Wallbase Lazy Download

Easily download images from wallbase.cc

Vad är Wallbase Lazy Download?

Wallbase Lazy Download är en Chrome-tillägg utvecklad av aleri, och dess huvudfunktion är "Easily download images from wallbase.cc".

Tilläggsskärmbilder

Ladda ner Wallbase Lazy Download-förlängningens CRX-fil

Ladda ner Wallbase Lazy Download-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Wallbase Lazy Download Wallbase Lazy Download
ID nbiioljcndklbchoghfiffgogjpgjnoe
Officiell webbadress https://chrome.google.com/webstore/detail/wallbase-lazy-download/nbiioljcndklbchoghfiffgogjpgjnoe
Beskrivning Easily download images from wallbase.cc
Filstorlek 125 KB
Antal Installationer 20
Aktuell Version 0.1.1
Senast Uppdaterad 2014-03-16
Publiceringsdatum 2014-03-16
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare aleri
Betalningssätt free
Stödda Språk 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"
    }
}