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": "Tab Renamer", "version": "1.1.4", "description": "Customize your tab titles and favicons for a more organized browsing experience.", "options_page": "settings\/settings.html", "permissions": [ "tabs", "activeTab", "scripting", "storage", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Open rename dialog" } }, "action": { "default_icon": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "default_title": "Tab Renamer" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "initializationContentScript.js" ], "run_at": "document_start" }, { "matches": [ "<all_urls>" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "assets\/emoji_picker_icon.png", "assets\/emojis.json", "assets\/icon*.png", "settings\/settings.html" ], "matches": [ "<all_urls>" ], "use_dynamic_url": false } ], "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } }