Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Default Profile for Netflix", "description": "Default profile for Netflix, auto-logs chosen profile, bypassing 'Who's watching?' screen. Focus on viewing, not profile selection.", "version": "0.0.1", "manifest_version": 3, "content_scripts": [ { "js": [ "options.js", "content.js" ], "matches": [ "*:\/\/*.netflix.com\/*" ] } ], "host_permissions": [ "*:\/\/*.netflix.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": "defaultIcon48.png" }, "permissions": [ "storage", "cookies" ], "background": { "service_worker": "background.js" }, "icons": { "48": "defaultIcon48.png", "128": "defaultIcon128.png" } }