mirror of
https://github.com/GetOpenScript/OpenScript.git
synced 2026-09-18 09:45:43 +00:00
34 lines
734 B
JSON
34 lines
734 B
JSON
{
|
|
"manifest_version": 3,
|
|
"minimum_chrome_version": "138",
|
|
"name": "OpenScript",
|
|
"version": "1.0.5",
|
|
"description": "A lightweight user script manager for modern browsers",
|
|
"action": {
|
|
"default_popup": "src/popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "src/background.js"
|
|
},
|
|
"permissions": [
|
|
"userScripts",
|
|
"storage",
|
|
"unlimitedStorage"
|
|
],
|
|
"host_permissions": [
|
|
"*://*/*"
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
}
|