Filter Remover

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

Apa itu Filter Remover?

Filter Remover adalah ekstensi Chrome yang dikembangkan oleh Pesticide, dan fitur utamanya adalah "Bring color back to website. In case of async content loading. click on icon again to run script manually.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Filter Remover

Unduh file ekstensi Filter Remover dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Filter Remover Filter Remover
ID bfebennjaidcjckomeokmaeieoidhieb
URL Resmi https://chromewebstore.google.com/detail/filter-remover/bfebennjaidcjckomeokmaeieoidhieb
Deskripsi Bring color back to website. In case of async content loading. click on icon again to run script manually.
Ukuran File 19.7 KB
Jumlah Instalasi 80
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2016-10-19
Tanggal Publikasi 2016-10-19
Penilaian 4.88/5 Total 8 Penilaian
Pengembang Pesticide
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}