Wallhaven Extender

Adds download and slideshow links directly onto images on Wallhaven.cc

Τι είναι το Wallhaven Extender;

Το Wallhaven Extender είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Richard Moss, και η κύρια λειτουργία του είναι "Adds download and slideshow links directly onto images on Wallhaven.cc".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Wallhaven Extender

Λήψη αρχείων επέκτασης Wallhaven Extender σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        - Adds "Download" and "Popout" links onto all thumbnails across the site, allowing easy ways to download wallpapers or view them fullscreen in a pop-up slideshow. Slideshows contain all the wallpapers available on the page (except in the forum) and will automatically load new content as you scroll through.

- Slideshows can be controlled using the keyboard arrows:
  - Left/right arrows will scroll left/right in the slideshow. 
  - Down arrow will download the current image
  - Up arrow will close the slideshow.
  - F will un/favourite the current image

- Adds download links to the sidebar on the wallpaper information pages.

Code: https://github.com/RempRemp/WallhavenExtender


Changes:
v1.0.0:
- Fixed some issues from the upgrade to the new site

For full changes see the code on github                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Wallhaven Extender Wallhaven Extender
ID kgpbgdfipipofehbijeiihelbfenieic
Επίσημο URL https://chromewebstore.google.com/detail/wallhaven-extender/kgpbgdfipipofehbijeiihelbfenieic
Περιγραφή Adds download and slideshow links directly onto images on Wallhaven.cc
Μέγεθος Αρχείου 31.63 KB
Αριθμός Εγκαταστάσεων 899
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2019-06-06
Ημερομηνία Δημοσίευσης 2019-06-06
Αξιολόγηση 5.00/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής Richard Moss
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wallhaven Extender",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Adds download and slideshow links directly onto images on Wallhaven.cc",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/*.wallhaven.cc\/",
        "downloads",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/icon32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wallhaven.cc\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.wallhaven.cc\/settings\/*"
            ],
            "css": [
                "lib\/simpleLightbox-2.1.0\/simpleLightbox.css",
                "src\/content.css"
            ],
            "js": [
                "lib\/simpleLightbox-2.1.0\/simpleLightbox.js",
                "src\/util.js",
                "src\/content.common.js",
                "src\/content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.wallhaven.cc\/settings\/browsing\/*"
            ],
            "js": [
                "src\/content.browsing.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/util.js",
        "src\/inject.js",
        "src\/inject.common.js",
        "src\/inject.lightbox.js"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    }
}