Filter Remover
Bring color back to website. In case of async content loading. click on icon again to run script manually.
Was ist Filter Remover?
Filter Remover ist eine Chrome-Erweiterung, die von Pesticide entwickelt wurde, und ihr Hauptmerkmal ist "Bring color back to website. In case of async content loading. click on icon again to run script manually.".
Erweiterungsscreenshots
Filter Remover-Erweiterungs-CRX-Datei herunterladen
Laden Sie Filter Remover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Filter Remover |
ID | bfebennjaidcjckomeokmaeieoidhieb |
Offizielle URL | https://chromewebstore.google.com/detail/filter-remover/bfebennjaidcjckomeokmaeieoidhieb |
Beschreibung | Bring color back to website. In case of async content loading. click on icon again to run script manually. |
Dateigröße | 19.7 KB |
Installationsanzahl | 80 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2016-10-19 |
Veröffentlichungsdatum | 2016-10-19 |
Bewertung | 4.88/5 Insgesamt 8 Bewertungen |
Entwickler | Pesticide |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |