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