Wallbase Lazy Download
Easily download images from wallbase.cc
Was ist Wallbase Lazy Download?
Wallbase Lazy Download ist eine Chrome-Erweiterung, die von aleri entwickelt wurde, und ihr Hauptmerkmal ist "Easily download images from wallbase.cc".
Erweiterungsscreenshots
Wallbase Lazy Download-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wallbase Lazy Download-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | nbiioljcndklbchoghfiffgogjpgjnoe |
Offizielle URL | https://chrome.google.com/webstore/detail/wallbase-lazy-download/nbiioljcndklbchoghfiffgogjpgjnoe |
Beschreibung | Easily download images from wallbase.cc |
Dateigröße | 125 KB |
Installationsanzahl | 20 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2014-03-16 |
Veröffentlichungsdatum | 2014-03-16 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | aleri |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |