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 |
| 官方網址 | 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"
}
} | |