mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-10-08 00:45:13 +08:00
合并网页截图功能(张君秋的代码)
This commit is contained in:
36
packages/shell-chrome/assets/html/screenshot/manifest.json
Normal file
36
packages/shell-chrome/assets/html/screenshot/manifest.json
Normal 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"
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user