mirror of https://github.com/shuang854/Turtle
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.
33 lines
718 B
JSON
33 lines
718 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",
|
|
"https://www.netflix.com/",
|
|
"http://localhost/*",
|
|
"https://turtletv.app/"
|
|
],
|
|
"version": "1.1",
|
|
"icons": {
|
|
"48": "icon_48.png"
|
|
}
|
|
}
|