Blog Comment Killfile
Provides a killfile for certain blogs.
Blog Comment Killfileとは何ですか?
Blog Comment Killfileはfizbinによって開発されたChromeの拡張機能で、その主な機能は「Provides a killfile for certain blogs.」です。
拡張機能のスクリーンショット
Blog Comment Killfile拡張機能のCRXファイルをダウンロード
Blog Comment Killfile拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The intention of this script is to hide the comments of commentors you, the reader, do not wish to hear from. In that respect, it's like an old usenet killfile. It does not affect what other visitors to the site will see. This is not a tool meant for handling spam, only for an individual comment reader to avoid having to see comments they don't wish to see. When the script works for a given blog, comments will have a [hush] link near the commentor's name. (visible only on mouseover!) Clicking on that will hide comments from that person from then on.
拡張機能の基本情報
名前 | Blog Comment Killfile |
ID | kpoilnkelonbaapoapibddjaojohnpjf |
公式URL | https://chromewebstore.google.com/detail/blog-comment-killfile/kpoilnkelonbaapoapibddjaojohnpjf |
説明 | Provides a killfile for certain blogs. |
ファイルサイズ | 28.33 KB |
インストール数 | 690 |
現在のバージョン | 0.2.11 |
最終更新日 | 2017-02-26 |
公開日 | 2017-02-25 |
評価 | 4.19/5 合計 21 レビュー |
開発者 | fizbin |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/fizbin/killfile-extension |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Blog Comment Killfile", "short_name": "killfile", "description": "Provides a killfile for certain blogs.", "background": { "scripts": [ "serverload.js", "define.js", "scenarios.js", "background.js" ], "persistent": true }, "icons": { "128": "kficon128.png", "64": "kficon64.png", "48": "kficon48.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "alarms" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "scenario.css" ], "js": [ "clientload.js", "define.js", "startthunk.js" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "*:\/\/disqus.com\/embed*", "*:\/\/*.disqus.com\/embed*" ], "css": [ "scenario.css" ], "js": [ "clientload.js", "define.js", "startthunk.js" ], "run_at": "document_idle", "all_frames": true } ], "page_action": { "default_icon": { "19": "kficon19.png", "38": "kficon38.png", "48": "kficon48.png", "64": "kficon64.png", "128": "kficon128.png" }, "default_title": "Killfile inactive" }, "manifest_version": 2, "version": "0.2.11" } |