Inspect and view changes in quanshi-frontend-devtools 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
{
"author": "woaiiimipi",
"description": "Get information of the active tab.",
"icons": {
"48": "icons/tool.png",
"96": "icons/tool.png"
},
"manifest_version": 2,
"name": "quanshi-frontend-devtools",
"version": "1.0",
"permissions": [
"tabs",
"contextMenus",
"background",
"*://*/*",
"storage"
],
"browser_action": {
"default_icon": {
"20": "icons/tool.png"
},
"default_title": "quanshi-frontend-devtools",
"default_popup": "GetTabInfo.html"
},
"content_scripts": [
{
"matches": [
"*://blog.csdn.net/*"
],
"js": [
"inject/lib/jquery.js",
"inject/lib/global.js",
"inject/unlockCsdn.js"
]
},
{
"matches": [
"*://testweb2.quanshi.com/eamsgateway/doc.html/*"
],
"js": [
"inject/lib/jquery.js",
"inject/lib/copyToClipboard.js",
"inject/copyApi.js"
]
},
{
"matches": [
"*://*/*"
],
"js": [
"inject/lib/jquery.js",
"inject/lib/copyToClipboard.js",
"inject/lib/undercore.js",
"inject/lib/jsonToTs.js",
"inject/copyApi.js"
]
}
],
"background": {
"scripts": [
"background/copyApi.js"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}