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": "Extension Development - Auto Reloader",
"short_name": "Extension Auto Reloader",
"version": "1.3.2",
"description": "Automatically reload unpacked extensions as source code changes during development via websocket's, Vite, and npm companion package.",
"icons": {
"16": "icons\/oroboros.png",
"48": "icons\/oroboros.png",
"128": "icons\/oroboros.png"
},
"background": {
"service_worker": "serviceWorker.js"
},
"permissions": [
"management",
"storage",
"tabs"
],
"action": {
"default_title": "Click to configure automatic unpacked extension reloading",
"default_popup": "index.html"
},
"web_accessible_resources": [
{
"resources": [
"main.js",
"main.css"
],
"matches": [
"<all_urls>"
]
}
]
}