Wallbase Lazy Download
Easily download images from wallbase.cc
什么是Wallbase Lazy Download?
Wallbase Lazy Download是由aleri开发的Chrome扩展程序,该扩展的主要功能是“Easily download images from wallbase.cc”。
扩展截图
下载Wallbase Lazy Download扩展crx文件
下载Wallbase Lazy Download扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to download wallpapers from wallbase.cc directly from their thumbnail preview on the search/top/hot page.
To download a wallpaper just hover over its thumbnail and press "d" from the keyboard.
If you are interested, the source code is on GitHub : https://github.com/Aleri/Wallbase-Lazy-Download
****Changelog****
V0.1.1
- Removed unnecessary permissions. 扩展基本信息
| 名称 | |
| ID | nbiioljcndklbchoghfiffgogjpgjnoe |
| 官方URL | https://chrome.google.com/webstore/detail/wallbase-lazy-download/nbiioljcndklbchoghfiffgogjpgjnoe |
| 简介 | Easily download images from wallbase.cc |
| 文件大小 | 125 KB |
| 安装次数 | 20 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2014-03-16 |
| 上架时间 | 2014-03-16 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | aleri |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Wallbase Lazy Download",
"short_name": "WLD",
"version": "0.1.1",
"manifest_version": 2,
"content_scripts": [
{
"js": [
"src\/inject\/inject.js",
"js\/jquery\/jquery.min.js"
],
"matches": [
"*:\/\/*.wallbase.cc\/*"
]
}
],
"description": "Easily download images from wallbase.cc",
"minimum_chrome_version": "16.0.884",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": false
},
"permissions": [
"downloads",
"*:\/\/*.wallbase.cc\/*"
],
"page_action": {
"default_icon": "icons\/icon128.png",
"default_title": "lazy download"
}
} | |