{ "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" } }