Skip to content

Instantly share code, notes, and snippets.

/manifest.json Secret

Created March 9, 2016 16:16
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 anonymous/1f0a6a5bd57315242450 to your computer and use it in GitHub Desktop.
Save anonymous/1f0a6a5bd57315242450 to your computer and use it in GitHub Desktop.
{
"name": "Youtube Logo Hide",
"short_name": "YLHide",
"version": "0.1",
"description": "Simply Hides the youtube logo from the upper left",
"manifest_version": 2,
"permissions": [ "storage", "tabs", "activeTab", "background", "browsingData", "http://*/*", "https://*/*"],
"content_scripts": [
{
"run_at": "document_start",
"include_globs": [ "*://*.youtube.com/*" ],
"matches": [ "*://*.youtube.com/*" ],
"css": [ "/YLHide.css" ]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment