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": "Search Console Tab Renamer", "version": "1.0.0", "description": "Renames Google Search Console tabs to include the property name", "permissions": [ "tabs", "scripting", "webNavigation" ], "host_permissions": [ "https:\/\/search.google.com\/*", "https:\/\/*.google.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/search.google.com\/*", "https:\/\/*.google.com\/*\/search-console\/*" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ] }