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", "name": "Rename Tab Title", "short_name": "RTT", "manifest_version": 3, "version": "1.3", "description": "Renames the Tab Title", "author": "Anush Veeranala", "homepage_url": "https:\/\/addons.mozilla.org\/en-US\/firefox\/addon\/rename-tab-title\/", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "126.0" } }, "developer": { "name": "Anush Veeranala", "url": "https:\/\/addons.mozilla.org\/en-US\/firefox\/user\/junnu8\/" }, "icons": { "48": "icon.png" }, "permissions": [ "storage", "activeTab", "scripting" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options\/options.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+E" } } }, "action": { "browser_style": false, "default_icon": "icon.png", "default_title": "Rename Tab Title", "default_popup": "popup\/popup.html" } }