Savee
Save images from any site straight into your boards on savee.it
什么是Savee?
Savee是由https://savee.it开发的Chrome扩展程序,该扩展的主要功能是“Save images from any site straight into your boards on savee.it”。
扩展截图
下载Savee扩展crx文件
下载Savee扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to save any image from any website straight into your Savee boards. 扩展基本信息
| 名称 | |
| ID | hhefhkepfnmcgalemmofagaioeegonbc |
| 官方URL | https://chromewebstore.google.com/detail/savee/hhefhkepfnmcgalemmofagaioeegonbc |
| 简介 | Save images from any site straight into your boards on savee.it |
| 文件大小 | 18.47 KB |
| 安装次数 | 10,490 |
| 当前版本 | 2.3.16 |
| 更新时间 | 2022-03-04 |
| 上架时间 | 2019-05-25 |
| 评分 | 3.92/5 共25次评分 |
| 开发者 | https://savee.it |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://savee.it/ |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"19": "icon_toolbar.png",
"38": "icon_toolbar_2x.png"
},
"default_title": "Savee"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"description": "Save images from any site straight into your boards on savee.it",
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"manifest_version": 2,
"name": "Savee",
"permissions": [
"*:\/\/*\/*",
"contextMenus",
"background",
"webRequest",
"activeTab",
"storage"
],
"version": "2.3.16",
"web_accessible_resources": [
"icon_48.png",
"content.js"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
}
}
},
"options_ui": {
"page": ".\/options\/options.html",
"open_in_tab": false
}
} | |