Spaces:
No application file
No application file
| { | |
| "manifest_version": 3, | |
| "name": "AI SQL Query Builder and Optimizer Extension", | |
| "short_name": "AI SQL Query", | |
| "version": "1.0.0", | |
| "description": "", | |
| "author": "ForgeX Empire", | |
| "homepage_url": "https://gumroad.com", | |
| "permissions": [ | |
| "activeTab", | |
| "storage", | |
| "scripting" | |
| ], | |
| "host_permissions": [ | |
| "http://*/*", | |
| "https://*/*" | |
| ], | |
| "background": { | |
| "service_worker": "background/service-worker.js", | |
| "type": "module" | |
| }, | |
| "action": { | |
| "default_popup": "popup/popup.html", | |
| "default_title": "AI SQL Query Builder and Optimizer Extension", | |
| "default_icon": { | |
| "16": "icons/icon16.png", | |
| "32": "icons/icon32.png", | |
| "48": "icons/icon48.png", | |
| "128": "icons/icon128.png" | |
| } | |
| }, | |
| "content_scripts": [ | |
| { | |
| "matches": [ | |
| "http://*/*", | |
| "https://*/*" | |
| ], | |
| "js": [ | |
| "content/content.js" | |
| ], | |
| "run_at": "document_idle", | |
| "all_frames": false | |
| } | |
| ], | |
| "icons": { | |
| "16": "icons/icon16.png", | |
| "32": "icons/icon32.png", | |
| "48": "icons/icon48.png", | |
| "128": "icons/icon128.png" | |
| }, | |
| "content_security_policy": { | |
| "extension_pages": "script-src 'self'; object-src 'self'" | |
| } | |
| } |