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": "Sheets Formula Generator", "version": "1.0", "description": "AI-powered Google Sheets formula generator", "permissions": [ "storage", "activeTab" ], "host_permissions": [ "https:\/\/sheets.google.com\/*", "https:\/\/api.openai.com\/*", "https:\/\/openrouter.ai\/*", "https:\/\/api.anthropic.com\/*", "https:\/\/generativelanguage.googleapis.com\/*" ], "action": { "default_title": "AI Formula Generator", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "options_page": "options.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/spreadsheets\/*" ], "js": [ "content.js" ], "css": [ "styles.css" ] } ], "background": { "service_worker": "background.js" } }