Inspect and view changes in thingclub-dev-tools source codes across current and past versions
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",
"name": "thingclub-dev-tools",
"description": "物联森友会开发调试工具",
"version": "1.0.1",
"manifest_version": 3,
"background": {
"service_worker": "src/main.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*://*.thingclub.com/*",
"*://web.dev.thingyouwe.uino.local/*",
"*://web.test.thingyouwe.uino.local/*",
"*://test-thingclub.3dlink.cn/*"
],
"css": [
"/style/devtools.css"
]
}
],
"permissions": [
"activeTab",
"scripting",
"contextMenus",
"tabs"
],
"action": {
"default_icon": {
"16": "/images/logo.png",
"32": "/images/logo.png",
"48": "/images/logo.png",
"128": "/images/logo.png"
},
"default_title": "物联森友会-调试工具"
},
"icons": {
"16": "/images/logo.png",
"32": "/images/logo.png",
"48": "/images/logo.png",
"128": "/images/logo.png"
},
"content_security_policy": {
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self'"
},
"sandbox": {
"pages": [
"pages/analyse/index.html"
]
},
"homepage_url": "https://www.thingclub.com"
}