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": "Google Sheets Formula Not Working? AI Formula Generator",
"version": "1.0.2",
"description": "AI formula generator for Google Sheets. Fix Google Sheets formula not working, build formulas, debug logic, and apply instantly.",
"permissions": [
"storage",
"activeTab",
"identity",
"tabs"
],
"host_permissions": [
"https:\/\/docs.google.com\/spreadsheets\/*",
"https:\/\/www.googleapis.com\/*",
"https:\/\/sheets.googleapis.com\/*"
],
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"action": {
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png"
},
"default_popup": "on_off_popup\/on_off_popup.html",
"default_title": "AI Formula Generator"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/docs.google.com\/spreadsheets\/*"
],
"js": [
"content.js"
],
"type": "module"
}
],
"oauth2": {
"client_id": "128570007401-lrccach0asr336lkbue5t3tsr5h4aa5h.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/spreadsheets",
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/userinfo.profile"
]
},
"web_accessible_resources": [
{
"resources": [
"sidebar\/index.html",
"sidebar\/style.css",
"sidebar\/ui.js",
"assets\/*",
"on_off_popup\/on_off_popup.html",
"fonts\/*",
"sidebar\/fonts.css"
],
"matches": [
"*:\/\/docs.google.com\/*"
]
}
]
}