Death to comments!

Banish comments from your internet

Death to comments!とは何ですか?

Death to comments!はTom Chambersによって開発されたChromeの拡張機能で、その主な機能は「Banish comments from your internet」です。

拡張機能のスクリーンショット

screenshot

Death to comments!拡張機能のCRXファイルをダウンロード

Death to comments!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Are you sick and tired of reading through an endless stream of vitriol and lunacy? Is your worldview being poisoned by bizarre claims and unnecessary personal attacks?

Death to Comments is a chrome extension that blocks comments everywhere. Works on youtube and gakwer sites. Future features may include whitelisting.

This is beta software that I made in the past hour, there may be bugs and performance issues. Please email me at [email protected] with bugs and feature requests. I will try to be responsive.

Source code for the comment blocker is available at: https://github.com/tomchambers2/death_to_comments. You are welcome to contribute.                    

拡張機能の基本情報

名前 Death to comments! Death to comments!
ID khkoofdalhndgpihmjeabjljegaghbph
公式URL https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph
説明 Banish comments from your internet
ファイルサイズ 4.68 KB
インストール数 15
現在のバージョン 0.1
最終更新日 2014-08-20
公開日 2014-08-20
評価 5.00/5 合計 1 レビュー
開発者 Tom Chambers
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Death to comments!",
    "description": "Banish comments from your internet",
    "version": "0.1",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}