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": "Thesaurus Pro", "version": "1.0.1", "description": "Fetches synonyms for the selected text and shows a popup.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_title": "Thesaurus Pro" }, "permissions": [ "activeTab", "storage" ], "host_permissions": [ "https:\/\/thesaurusapi.ttop10.review\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "css": [ "popup.css" ], "run_at": "document_idle", "all_frames": true } ], "commands": { "fetch-synonyms": { "suggested_key": { "default": "Ctrl+Shift+0" }, "description": "Fetch synonyms for selected text", "global": true } } }