48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "丰链工具箱",
|
|
"version": "1.0",
|
|
"description": "二维码生成、Word转HTML等实用工具集合。made by Scout",
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"downloads",
|
|
"scripting",
|
|
"storage",
|
|
"tabs"
|
|
],
|
|
"host_permissions": [
|
|
"https://api.fanyi.baidu.com/*",
|
|
"<all_urls>"
|
|
],
|
|
"commands": {
|
|
"trigger-select": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Q",
|
|
"mac": "Command+Q"
|
|
},
|
|
"description": "触发框选功能"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["md5.js", "content.js"],
|
|
"css": ["content.css"]
|
|
}]
|
|
} |