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": "SheetsGPT - AI Google Sheets Formula Maker", "version": "1.3", "description": "AI extension that uses AI to provide Sheets functions", "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/sheetsgpt (16 x 16px).png", "48": "assets\/sheetsgpt (48 x 48 px).png", "128": "assets\/sheetsgpt (128 x 128 px).png" } }, "icons": { "16": "assets\/sheetsgpt (16 x 16px).png", "48": "assets\/sheetsgpt (48 x 48 px).png", "128": "assets\/sheetsgpt (128 x 128 px).png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.sheets-gpt.com\/*" ], "js": [ "content_script.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/www.sheets-gpt.com\/*" ] }, "background": { "service_worker": "dist\/background.js", "type": "module" }, "content_security_policy": { "sandbox": "sandbox allow-scripts; script-src 'self'" } }