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", "manifest_version": 3, "name": "Window Props Plus", "version": "1.1", "description": "Add custom properties to the window object with an intuitive UI. Save changes and refresh the page to apply the new properties.", "permissions": [ "scripting" ], "action": { "default_popup": "index.html", "default_icon": { "16": "images\/local_icon_16.png", "32": "images\/local_icon_32.png", "48": "images\/local_icon_48.png", "128": "images\/local_icon_128.png" }, "disabled_icon": { "16": "images\/local_disabled_icon_16.png", "32": "images\/local_disabled_icon_32.png", "48": "images\/local_disabled_icon_48.png", "128": "images\/local_disabled_icon_128.png" } }, "icons": { "16": "images\/local_icon_16.png", "32": "images\/local_icon_32.png", "48": "images\/local_icon_48.png", "128": "images\/local_icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentScripts\/attachDataToWindow.js" ], "run_at": "document_start", "world": "MAIN" } ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "scripts\/serviceWorker\/background.js" } }