Skip to content

Instantly share code, notes, and snippets.

@dhilipkmr
Created February 6, 2019 10:26
Show Gist options
  • Save dhilipkmr/3a95c419b5577ab7dfe31b5abbdeaf32 to your computer and use it in GitHub Desktop.
Save dhilipkmr/3a95c419b5577ab7dfe31b5abbdeaf32 to your computer and use it in GitHub Desktop.
{
"manifest_version": 2,
"name": "IMDB Ratings",
"version": "0.1",
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"js": ["content.js"]
}
],
"web_accessible_resources": [
"styles.css"
],
"background": {
"scripts": ["background.js", "config.js"]
},
"browser_action": {
"default_icon": "imdb.png"
},
"permissions": [
"contextMenus"
],
"icons": {
"16": "imdb-16x16.png",
"128": "imdb-128x128.png"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment