News filter
Hide unwanted news from pages, based on forbidden words
What is News filter?
News filter is a Chrome extension developed by softwareamman, and its main feature is "Hide unwanted news from pages, based on forbidden words".
Extension Screenshots
Download News filter Extension CRX File
Download News filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Hide unwanted news from pages, based on forbidden words. Enter the words you want to block, words are entered in lowercase letters in the format first|second|third
Extension Basic Information
Name | News filter |
ID | mehaipijahdeeiooaebccpedpeelbjeh |
Official URL | https://chromewebstore.google.com/detail/news-filter/mehaipijahdeeiooaebccpedpeelbjeh |
Description | Hide unwanted news from pages, based on forbidden words |
File Size | 8.31 KB |
Installation Count | 154 |
Current Version | 1.0 |
Last Updated | 2022-06-26 |
Publish Date | 2020-07-28 |
Rating | 5.00/5 Total 4 Ratings |
Developer | softwareamman |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "News filter", "version": "1.0", "description": "Hide unwanted news from pages, based on forbidden words", "permissions": [ "storage" ], "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "background.js" ] } ], "page_action": { "default_icon": { "32": "images\/news_filter_32.png", "48": "images\/news_filter_48.png", "128": "images\/news_filter_128.png" } }, "icons": { "32": "images\/news_filter_32.png", "48": "images\/news_filter_48.png", "128": "images\/news_filter_128.png" }, "manifest_version": 2 } |