Image Hider

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

Image Hiderคืออะไร?

Image Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Mason และคุณลักษณะหลักของมันคือ "Chrome extension to hide all images by default and show images again with click of icon."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image Hider

ดาวน์โหลดไฟล์ส่วนขยาย Image Hider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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