Wallhaven Direct Downloader

Allows you to download the wallpapers on Wallhaven directly from the search/tag/random/toplist pages

Vad är Wallhaven Direct Downloader?

Wallhaven Direct Downloader är en Chrome-tillägg utvecklad av https://erambert.me, och dess huvudfunktion är "Allows you to download the wallpapers on Wallhaven directly from the search/tag/random/toplist pages".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Wallhaven Direct Downloader-förlängningens CRX-fil

Ladda ner Wallhaven Direct Downloader-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

                        Since Wallbase is dead and being replaced by Wallhaven, the extension has made the change

For those interested, the source code of the extension is available on GitHub :) https://github.com/eramdam/WallbaseDirectDownloader

*** CHANGELOG ***
Check the changelog here => https://github.com/eramdam/WallbaseDirectDownloader/releases                    

Grundläggande Information om Tillägg

Namn Wallhaven Direct Downloader Wallhaven Direct Downloader
ID mggclgefcmlpigdbcpfheklbhflnknkf
Officiell webbadress https://chromewebstore.google.com/detail/wallhaven-direct-download/mggclgefcmlpigdbcpfheklbhflnknkf
Beskrivning Allows you to download the wallpapers on Wallhaven directly from the search/tag/random/toplist pages
Filstorlek 25.18 KB
Antal Installationer 2,000
Aktuell Version 1.4.1
Senast Uppdaterad 2024-02-02
Publiceringsdatum 2019-06-20
Betyg 4.32/5 Totalt 37 Betyg
Utvecklare https://erambert.me
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/eramdam/WallbaseDirectDownloader
Hjälpsida URL https://github.com/eramdam/WallbaseDirectDownloader/issues
URL till Sekretesspolicy Sidan https://github.com/eramdam/BetterTweetDeck/wiki/Privacy-policy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wallhaven Direct Downloader",
    "version": "1.4.1",
    "manifest_version": 3,
    "description": "Allows you to download the wallpapers on Wallhaven directly from the search\/tag\/random\/toplist pages",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/wallhaven.cc\/wallpaper\/*",
                "*:\/\/wallhaven.cc\/tag\/*",
                "*:\/\/wallhaven.cc\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "wbs.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "wallbase.eot",
                "wallbase.ttf",
                "wallbase.svg",
                "wallbase.woff"
            ],
            "matches": [
                "https:\/\/wallhaven.cc\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "host_permissions": [
        "*:\/\/wallhaven.cc\/*",
        "*:\/\/*.wallhaven.cc\/*"
    ]
}