Filter Remover

Bring color back to website. In case of async content loading. click on icon again to run script manually.

Co to jest Filter Remover?

Filter Remover to rozszerzenie Chrome opracowane przez Pesticide, a jego główną funkcją jest „Bring color back to website. In case of async content loading. click on icon again to run script manually.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Filter Remover

Pobierz pliki rozszerzeń Filter Remover 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

                        Bring color back to website. It remove filter: grayscale automatically when page load. In case of asynchronous content loading, please click icon again to run it manually.

Support old chrome version with webkit.Filter                    

Podstawowe informacje o rozszerzeniu

Nazwa Filter Remover Filter Remover
ID bfebennjaidcjckomeokmaeieoidhieb
Oficjalny URL https://chromewebstore.google.com/detail/filter-remover/bfebennjaidcjckomeokmaeieoidhieb
Opis Bring color back to website. In case of async content loading. click on icon again to run script manually.
Rozmiar pliku 19.7 KB
Liczba instalacji 80
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2016-10-19
Data Publikacji 2016-10-19
Ocena 4.88/5 Łącznie 8 Oceny
Deweloper Pesticide
Typ Płatności free
Obsługiwane Języki th
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Filter Remover",
    "description": "Bring color back to website. In case of async content loading. click on icon again to run script manually.",
    "version": "1.1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "click here to run color script manually."
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}