Files
url-launcher-chrome-plugin/manifest.json
T

18 lines
425 B
JSON
Raw Normal View History

2026-05-26 11:26:37 -03:00
{
"manifest_version": 3,
"name": "URL Launcher",
"version": "1.0.0",
"description": "Paste a list of URLs and open them all as tabs, with optional lazy-load on focus.",
"action": {
"default_popup": "popup.html",
"default_title": "URL Launcher"
},
"permissions": ["tabs"],
"web_accessible_resources": [
{
"resources": ["loader.html", "loader.js"],
"matches": ["<all_urls>"]
}
]
}