Skip to content

Instantly share code, notes, and snippets.

@neoighodaro
Last active October 16, 2022 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neoighodaro/d6325aa5c4804cb73ef3a0d4c0d1f2af to your computer and use it in GitHub Desktop.
Save neoighodaro/d6325aa5c4804cb73ef3a0d4c0d1f2af to your computer and use it in GitHub Desktop.
All Black Youtube
{
"name": "All Black Youtube",
"description": "Pitch Black Youtube",
"version": "0.0.1",
"manifest_version": 3,
"content_scripts": [
{
"matches": ["*://*.extensions/*"],
"css": ["styles.css"]
}
],
"permissions": []
}
body, ytd-app, ytd-masthead {
--yt-spec-brand-background-solid: black !important;
--ytd-searchbox-background: black !important;
--yt-spec-base-background: black !important;
--yt-spec-raised-background: black !important;
--yt-spec-general-background-a: black !important;
--yt-spec-general-background-b: black !important;
--yt-spec-general-background-c: black !important;
--yt-spec-brand-background-primary: black !important;
background: black !important;
}
.html5-video-container {
height: 100%;
width: 100%;
top: 0px;
left: 0px;
}
#player-theater-container:not(:empty) {
max-height: none !important;
width: 100% !important;
height: calc(100vh - 64px) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment