Skip to content

Instantly share code, notes, and snippets.

@jeffmerrick
Created October 13, 2014 18:42
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 jeffmerrick/8ab234e1453b8b1e15ce to your computer and use it in GitHub Desktop.
Save jeffmerrick/8ab234e1453b8b1e15ce to your computer and use it in GitHub Desktop.
manifest.json
{
"name": "Netflix Trailers",
"version": "1.0.1",
"description": "Adds a button to Netflix movie pages to watch the trailer on YouTube",
"manifest_version": 2,
"permissions": [
"https://www.googleapis.com/*"
],
"icons": {
"16" : "icon-16.png",
"48" : "icon-48.png",
"128" : "icon-128.png"
},
"content_scripts": [
{
"matches": ["http://www.netflix.com/WiMovie/*"],
"js" : ["jquery.js", "contentscript.js"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment