chrome extension switchbot controler
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "my-switchbot-controler",
"version": "1.1.0",
"description": "chrome extension switchbot controler",
"background": {
"service_worker": "src/pages/background/index.js"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": "icon-34.png"
},
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"src/pages/content/index.js"
],
"css": [
"contentStyle.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets/jsx-runtime.*.js",
"contentStyle.css",
"icon-128.png",
"icon-34.png"
],
"matches": [
"*://*/*"
]
}
],
"author": "noripi10",
"permissions": [
"storage"
]
}