Image Hider

Chrome extension to hide all images by default and show images again with click of icon.

Image Hider란 무엇입니까?

Image Hider은(는) Alex Mason에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension to hide all images by default and show images again with click of icon."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Image Hider 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hides images on a website, shows images temporarily on hover.
Shows images again by clicking the extension icon.

Hide/Show preference works on a per-domain basis, meaning you can have one website hide images and another show them.

Preference is saved automatically using HTML5 LocalStorage.

Updated 12/07/2015 -- Now you can hide background images by toggling a setting (right click on the extension icon to find the setting). Note that this applies to all websites when toggled and may cause unwanted effects (ex: may hide button icons).

Updated again to fix default hide status.


This is an open source project under the MIT license.

Note: it does not currently work on videos, or other media.                    

확장 프로그램 기본 정보

이름 Image Hider Image Hider
ID fdjghmbmljbhojdgegmhhbkhgoacgdcb
공식 URL https://chromewebstore.google.com/detail/image-hider/fdjghmbmljbhojdgegmhhbkhgoacgdcb
설명 Chrome extension to hide all images by default and show images again with click of icon.
파일 크기 1.53 MB
설치 횟수 1,223
현재 버전 0.2.8
최근 업데이트 2015-12-08
출시 날짜 2015-12-08
평점 4.19/5 총 27 개의 평점
개발자 Alex Mason
결제 유형 free
확장 프로그램 웹 사이트 http://alexmason81.github.io/ChromeImgHider
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Hider",
    "version": "0.2.8",
    "description": "Chrome extension to hide all images by default and show images again with click of icon.",
    "author": "Alex Mason",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/image-hider\/fdjghmbmljbhojdgegmhhbkhgoacgdcb",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "style-hide.css"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Image Hider",
        "default_icon": "icon.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}