Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "version": "1.8.0", "description": "__MSG_appDesc__", "default_locale": "en", "author": "tabmanagerproo", "permissions": [ "activeTab", "storage", "commands", "contextMenus", "notifications", "tabs" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "commands": { "increase-brightness": { "suggested_key": { "default": "Ctrl+Shift+Up" }, "description": "Increase brightness" }, "decrease-brightness": { "suggested_key": { "default": "Ctrl+Shift+Down" }, "description": "Decrease brightness" } }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js", "type": "module" } }