123456789101112131415161718192021222324252627282930 |
- {
- "name": "中联代码分析",
- "version": "1.0",
- "description": "中联Web项目代码分析插件",
- "manifest_version": 3,
- "permissions": [
- "storage",
- "webRequest",
- "activeTab",
- "tabs",
- "debugger"
- ],
- "icons": {
- "16": "zlsoft.png",
- "48": "zlsoft.png",
- "128": "zlsoft.png"
- },
- "action": {
- "default_popup": "popup.html"
- },
- "background": {
- "service_worker": "background.js"
- },
- "content_scripts": [
- {
- "matches": ["<all_urls>"],
- "js": ["content.js"]
- }
- ]
- }
|