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, "version": "3.1", "name": "Simple Tab Renamer", "description": "A simple chrome tab renamer extension", "action": { "default_icon": ".\/styles\/extension_icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "*:\/\/extensions\/" ], "js": [ "content.js" ] } ], "icons": { "16": ".\/styles\/extension_icon.png", "48": ".\/styles\/extension_icon.png", "128": ".\/styles\/extension_icon.png" }, "background": { "service_worker": "service_worker.js" }, "permissions": [ "tabs" ] }