Wallbase Lazy Download
Easily download images from wallbase.cc
Hvad er Wallbase Lazy Download?
Wallbase Lazy Download er en Chrome-udvidelse udviklet af aleri, og dens hovedfunktion er "Easily download images from wallbase.cc".
Udvidelsesskærmbilleder
Download Wallbase Lazy Download-udvidelses-CRX-fil
Download Wallbase Lazy Download-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | nbiioljcndklbchoghfiffgogjpgjnoe |
Officiel URL | https://chrome.google.com/webstore/detail/wallbase-lazy-download/nbiioljcndklbchoghfiffgogjpgjnoe |
Beskrivelse | Easily download images from wallbase.cc |
Filstørrelse | 125 KB |
Antal Installationer | 20 |
Nuværende Version | 0.1.1 |
Senest Opdateret | 2014-03-16 |
Udgivelsesdato | 2014-03-16 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | aleri |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |