Img Hidden

This extension hides annoying backgrounds and images.

Co to jest Img Hidden?

Img Hidden to rozszerzenie Chrome opracowane przez cammann.tom, a jego główną funkcją jest „This extension hides annoying backgrounds and images.”.

Pobierz plik CRX rozszerzenia Img Hidden

Pobierz pliki rozszerzeń Img Hidden w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Img Hidden Img Hidden
ID fgncohcbpbbljbookdpjfeigbjkgpfeb
Oficjalny URL https://chrome.google.com/webstore/detail/img-hidden/fgncohcbpbbljbookdpjfeigbjkgpfeb
Opis This extension hides annoying backgrounds and images.
Rozmiar pliku 87.39 KB
Liczba instalacji 26
Aktualna Wersja 0.6
Ostatnia Aktualizacja 2014-03-06
Data Publikacji 2014-03-06
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper cammann.tom
Typ Płatności free
Strona Rozszerzenia http://takac.github.io/chrome-img-hidden/
Obsługiwane Języki 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"
            ]
        }
    ]
}