AutoMouser/manifest.json
2025-12-24 20:16:41 -08:00

49 lines
1.3 KiB
JSON

{
"manifest_version": 3,
"name": "InverseUI",
"version": "1.1",
"default_locale": "en",
"description": "InverseUI automatically transforms your UI interactions into web automation code.",
"permissions": ["activeTab", "notifications", "contextMenus", "history", "downloads", "tabs", "storage", "webNavigation", "cookies"],
"host_permissions": [
"https://api.inverseui.com/*",
"https://inverseui.com/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"all_frames": true,
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"modules/*.js",
"modules/**/*.js",
"util/*.js",
"api/*.js",
"inject/*.js"
],
"matches": ["<all_urls>"]
}
],
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"action": {
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png"
}
}
}