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": "AI Grammar Pro", "version": "1.0.0", "description": "Advanced real-time grammar and spell checking using AI", "permissions": [ "storage", "activeTab", "scripting" ], "host_permissions": [ "https:\/\/outright-openai-1.openai.azure.com\/*", "<all_urls>" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_end", "all_frames": true } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon.png", "48": "icon1.png", "128": "icon.png" } }, "icons": { "16": "icon.png", "48": "icon1.png", "128": "icon.png" }, "web_accessible_resources": [ { "resources": [ "icon.png", "loading.gif" ], "matches": [ "<all_urls>" ] } ] }