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": "Custom Tab Title", "version": "1.0.1", "description": "Change and maintain custom tab titles", "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "<all_urls>" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "<all_urls>" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "titleOverride.js", "tests\/tests.html" ], "matches": [ "<all_urls>" ] } ], "commands": { "set_custom_title": { "suggested_key": { "default": "Alt+Shift+S" }, "description": "Set custom tab title" }, "reset_custom_title": { "suggested_key": { "default": "Alt+Shift+R" }, "description": "Reset custom tab title" }, "toggle_maintain": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "Toggle maintain title on navigation" } } }