Img Hidden

This extension hides annoying backgrounds and images.

Qu'est-ce que Img Hidden ?

Img Hidden est une extension Chrome développée par cammann.tom, et sa fonction principale est "This extension hides annoying backgrounds and images.".

Télécharger le fichier CRX de l'extension Img Hidden

Téléchargez les fichiers d'extension Img Hidden au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Img Hidden Img Hidden
ID fgncohcbpbbljbookdpjfeigbjkgpfeb
URL Officiel https://chrome.google.com/webstore/detail/img-hidden/fgncohcbpbbljbookdpjfeigbjkgpfeb
Description This extension hides annoying backgrounds and images.
Taille du Fichier 87.39 KB
Nombre d'Installations 26
Version Actuelle 0.6
Dernière Mise à Jour 2014-03-06
Date de Publication 2014-03-06
Évaluation 4.67/5 Total 3 Évaluations
Développeur cammann.tom
Type de Paiement free
Site Web de l'Extension http://takac.github.io/chrome-img-hidden/
Langues Prises en Charge 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"
            ]
        }
    ]
}