News filter
Hide unwanted news from pages, based on forbidden words
News filterとは何ですか?
News filterはsoftwareammanによって開発されたChromeの拡張機能で、その主な機能は「Hide unwanted news from pages, based on forbidden words」です。
拡張機能のスクリーンショット
News filter拡張機能のCRXファイルをダウンロード
News filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | News filter |
ID | mehaipijahdeeiooaebccpedpeelbjeh |
公式URL | https://chromewebstore.google.com/detail/news-filter/mehaipijahdeeiooaebccpedpeelbjeh |
説明 | Hide unwanted news from pages, based on forbidden words |
ファイルサイズ | 8.31 KB |
インストール数 | 154 |
現在のバージョン | 1.0 |
最終更新日 | 2022-06-26 |
公開日 | 2020-07-28 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | softwareamman |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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 } |