Inspect and view changes in 微搭开发者工具 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": "微搭开发者工具",
"version": "1.5.0",
"description": "一个用于微搭开发的Chrome扩展",
"manifest_version": 3,
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"permissions": [
"debugger"
],
"devtools_page": "devtools.html",
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"sandbox-backend.js"
],
"matches": [
"https://*/*"
],
"exclude_matches": [
"https://lcap.cloud.tencent.com/*/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"preview-sandbox-content.js"
],
"exclude_matches": [
"https://lcap.cloud.tencent.com/*/*"
],
"all_frames": true
}
]
}