Img Hidden

This extension hides annoying backgrounds and images.

Img Hiddenとは何ですか?

Img Hiddenはcammann.tomによって開発されたChromeの拡張機能で、その主な機能は「This extension hides annoying backgrounds and images.」です。

Img Hidden拡張機能のCRXファイルをダウンロード

Img Hidden拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A chrome extension to hide images and backgrounds on a page.

Images/backgrounds can be toggled on and off to allow for a more pleasant reading experience.

Go from clutter to minimalist in a single click.

Source code: https://github.com/takac/chrome-img-hidden/                    

拡張機能の基本情報

名前 Img Hidden Img Hidden
ID fgncohcbpbbljbookdpjfeigbjkgpfeb
公式URL https://chrome.google.com/webstore/detail/img-hidden/fgncohcbpbbljbookdpjfeigbjkgpfeb
説明 This extension hides annoying backgrounds and images.
ファイルサイズ 87.39 KB
インストール数 26
現在のバージョン 0.6
最終更新日 2014-03-06
公開日 2014-03-06
評価 4.67/5 合計 3 レビュー
開発者 cammann.tom
支払い方法 free
拡張機能のウェブサイト http://takac.github.io/chrome-img-hidden/
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Img Hidden",
    "description": "This extension hides annoying backgrounds and images.",
    "version": "0.6",
    "permissions": [
        "background",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ]
}