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": "Hide Page", "version": "1.0", "description": "Blacks out the page and hides the URL when a specific key combination or panic mode is activated.", "permissions": [ "activeTab", "storage", "commands", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "32": "icons\/icon32.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "32": "icons\/icon32.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "css": [ "styles.css" ] } ], "commands": { "toggle-feature": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "Command+Shift+F" }, "description": "Toggle the blackout effect" }, "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" } } } }