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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - 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
    }
}