Filter Remover
Bring color back to website. In case of async content loading. click on icon again to run script manually.
Cos'è Filter Remover?
Filter Remover è un'estensione di Chrome sviluppata da Pesticide, e la sua funzione principale è "Bring color back to website. In case of async content loading. click on icon again to run script manually.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Filter Remover
Scarica i file di estensione Filter Remover in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Filter Remover |
ID | bfebennjaidcjckomeokmaeieoidhieb |
URL Ufficiale | https://chromewebstore.google.com/detail/filter-remover/bfebennjaidcjckomeokmaeieoidhieb |
Descrizione | Bring color back to website. In case of async content loading. click on icon again to run script manually. |
Dimensione del File | 19.7 KB |
Conteggio Installazioni | 80 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2016-10-19 |
Data di Pubblicazione | 2016-10-19 |
Valutazione | 4.88/5 Totale 8 Valutazioni |
Sviluppatore | Pesticide |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |