mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-01-12 22:58:14 +08:00
37 lines
610 B
JSON
37 lines
610 B
JSON
|
{
|
||
|
"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"
|
||
|
]
|
||
|
}
|