You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Turtle/extension/manifest.json

27 lines
633 B
JSON

{
"manifest_version": 2,
"name": "Turtle",
"description": "Allows syncing shows/movies of subscription services",
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["https://www.netflix.com/*"],
"js": ["player.js"],
"all_frames": true
},
{
"matches": ["http://localhost/*", "https://turtletv.app/*"],
"js": ["check_extension.js"]
}
],
"web_accessible_resources": ["netflix.js"],
"permissions": ["webRequest", "webRequestBlocking", "<all_urls>"],
"version": "1.0",
"icons": {
"48": "icon_48.png"
}
}