Filter Remover
Bring color back to website. In case of async content loading. click on icon again to run script manually.
Vad är Filter Remover?
Filter Remover är en Chrome-tillägg utvecklad av Pesticide, och dess huvudfunktion är "Bring color back to website. In case of async content loading. click on icon again to run script manually.".
Tilläggsskärmbilder
Ladda ner Filter Remover-förlängningens CRX-fil
Ladda ner Filter Remover-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Filter Remover |
ID | bfebennjaidcjckomeokmaeieoidhieb |
Officiell webbadress | https://chromewebstore.google.com/detail/filter-remover/bfebennjaidcjckomeokmaeieoidhieb |
Beskrivning | Bring color back to website. In case of async content loading. click on icon again to run script manually. |
Filstorlek | 19.7 KB |
Antal Installationer | 80 |
Aktuell Version | 1.1.1 |
Senast Uppdaterad | 2016-10-19 |
Publiceringsdatum | 2016-10-19 |
Betyg | 4.88/5 Totalt 8 Betyg |
Utvecklare | Pesticide |
Betalningssätt | free |
Stödda Språk | 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" ] } |