Wallhaven Extender

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

什麼是Wallhaven Extender?

Wallhaven Extender是由Richard Moss開發的Chrome擴展程式,該擴展的主要功能是“Adds download and slideshow links directly onto images on Wallhaven.cc”。

擴展截圖

screenshot
screenshot
screenshot

下載Wallhaven Extender擴展crx文件

下載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
官方網址 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
    }
}