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": "__MSG_appName__", "description": "__MSG_shortDesc__", "default_locale": "en", "version": "1.9.0", "action": { "default_title": "Correct Selected Text", "default_icon": { "16": "logo-16.png", "32": "logo-32.png", "48": "logo-48.png", "64": "logo-64.png", "96": "logo-96.png", "128": "logo-128.png" } }, "permissions": [ "sidePanel", "contextMenus", "activeTab", "storage", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "background.js", "type": "module" }, "side_panel": { "default_path": "index.html" }, "icons": { "16": "logo-16.png", "32": "logo-32.png", "48": "logo-48.png", "64": "logo-64.png", "96": "logo-96.png", "128": "logo-128.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_idle" } ] }