mirror of
https://github.com/wassname/netflix-ratings.git
synced 2026-06-26 16:00:16 +08:00
39 lines
802 B
JSON
39 lines
802 B
JSON
{
|
|
"author": "Nils Beckmann",
|
|
"manifest_version": 2,
|
|
"name": "netflix-ratings",
|
|
"version": "0.7.0",
|
|
|
|
"description": "This Extension adds themoviedb.org ratings to movies whenever they can be matched.",
|
|
|
|
"icons": {
|
|
"48": "icons/logo48.png",
|
|
"96": "icons/logo96.png"
|
|
},
|
|
|
|
"permissions": [
|
|
"*://www.netflix.com/*",
|
|
"*://www.netflix.de/*",
|
|
"*://www.netflix.co.uk/*"
|
|
],
|
|
|
|
"content_scripts": [
|
|
{
|
|
"run_at": "document_end",
|
|
"matches": [
|
|
"*://www.netflix.com/*",
|
|
"*://www.netflix.de/*",
|
|
"*://www.netflix.co.uk/*"
|
|
],
|
|
"js": ["jquery-3.1.0.min.js", "flixrate.js"],
|
|
"css": ["flixrate.css"]
|
|
}
|
|
],
|
|
|
|
"web_accessible_resources": [
|
|
"flixrate.css"
|
|
],
|
|
"homepage_url": "https://github.com/nilsbeck/netflix-ratings"
|
|
|
|
}
|