Wallbase Lazy Download

Easily download images from wallbase.cc

Cos'è Wallbase Lazy Download?

Wallbase Lazy Download è un'estensione di Chrome sviluppata da aleri, e la sua funzione principale è "Easily download images from wallbase.cc".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Wallbase Lazy Download

Scarica i file di estensione Wallbase Lazy Download in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Wallbase Lazy Download Wallbase Lazy Download
ID nbiioljcndklbchoghfiffgogjpgjnoe
URL Ufficiale https://chrome.google.com/webstore/detail/wallbase-lazy-download/nbiioljcndklbchoghfiffgogjpgjnoe
Descrizione Easily download images from wallbase.cc
Dimensione del File 125 KB
Conteggio Installazioni 20
Versione Corrente 0.1.1
Ultimo Aggiornamento 2014-03-16
Data di Pubblicazione 2014-03-16
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore aleri
Tipo di Pagamento free
Lingue Supportate 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"
    }
}