Img Hidden

This extension hides annoying backgrounds and images.

Wat is Img Hidden?

Img Hidden is een Chrome-extensie ontwikkeld door cammann.tom, en de belangrijkste functie is "This extension hides annoying backgrounds and images.".

Download het CRX-bestand van de extensie Img Hidden

Download Img Hidden-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Img Hidden Img Hidden
ID fgncohcbpbbljbookdpjfeigbjkgpfeb
Officiële URL https://chrome.google.com/webstore/detail/img-hidden/fgncohcbpbbljbookdpjfeigbjkgpfeb
Beschrijving This extension hides annoying backgrounds and images.
Bestandsgrootte 87.39 KB
Aantal Installaties 26
Huidige Versie 0.6
Laatst Bijgewerkt 2014-03-06
Publicatiedatum 2014-03-06
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar cammann.tom
Betalingswijze free
Extensiewebsite http://takac.github.io/chrome-img-hidden/
Ondersteunde Talen 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"
            ]
        }
    ]
}