Skip to content

Instantly share code, notes, and snippets.

@Swader
Created November 20, 2012 00:01
Show Gist options
  • Save Swader/4115015 to your computer and use it in GitHub Desktop.
Save Swader/4115015 to your computer and use it in GitHub Desktop.
DeSkin - manifest.json
{
"name": "DeSkin",
"version": "0.9",
"manifest_version" : 2,
"description": "Hides Vevo ads from around Youtube videos",
"background" : { "page" : "background.html" },
"page_action" :
{
"default_icon": {
"19": "icons/19.png",
"38": "icons/38.png"
},
"default_title" : "DeSkin is in effect"
},
"content_scripts": [
{
"matches": ["http://www.youtube.com/watch?*", "https://www.youtube.com/watch?*"],
"js": ["scripts/main.js"],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment