1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-01-12 14:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
chrome-extension/packages/shell-chrome/assets/html/screenshot/manifest.json

37 lines
610 B
JSON
Raw Normal View History

{
"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"
]
}