{ "manifest_version": 2, "name": "NetflixBackup", "version": "1.1", "description": "Gets Netflix history and sends this to a backend.", "icons": { "16": "images/icon-16.png", "32": "images/icon-32.png", "48": "images/icon-48.png", "64": "images/icon-64.png", "128": "images/icon-128.png" }, "background": { "scripts": [ "js/background.js" ] }, "options_ui": { "page": "html/options.html", "browser_style": true, "open_in_tab": true }, "content_scripts": [ { "js": [ "js/inject.js" ], "matches": [ "*://*.netflix.com/*" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "js/content.js" ], "externally_connectable": { "matches": [ "*://*.netflix.com/*" ] }, "browser_action": { "default_icon": { "19": "images/icon-19.png", "38": "images/icon-38.png" }, "default_popup": "html/popup.html", "default_title": "popup" }, "permissions": [ "storage", "*://*.netflix.com/*" ] }