1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-08 00:45:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

合并网页截图功能(张君秋的代码)

This commit is contained in:
2022-02-06 00:37:31 +08:00
parent 4f2a2acf81
commit 82304cc5a8
18 changed files with 476 additions and 33 deletions

View File

@@ -0,0 +1,36 @@
{
"manifest_version": 2,
"name" : "Screenshot Capture",
"version" : "2.0",
"description" : "Screenshot Capture",
"browser_action": {
"default_title": "Screenshot Capture"
},
"background" : {
"scripts": [
"background.js"
],
"persistent": false
},
"web_accessible_resources": [
"/images/Jcrop.gif",
"/images/pixel.png"
],
"commands": {
"take-screenshot": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Take Screenshot"
}
},
"permissions": [
"storage",
"activeTab"
]
}