YouTube Comment Filter

Allows you to filter out Youtube spam.

YouTube Comment Filterとは何ですか?

YouTube Comment Filterはaveryboyd2によって開発されたChromeの拡張機能で、その主な機能は「Allows you to filter out Youtube spam.」です。

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

screenshot

YouTube Comment Filter拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        YouTube comments can be very annoying and these comments can overrun a discussion thread.
But YouTube's comment reporting is too dependent on the community's idea of what spam is. What users consider to be spam is different from person to person, so there should be a way to filter out what you think is spam for yourself.

This extension is a spam filter for YouTube comments just like any e-mail service would have. It will learn what you consider to be spam and hide any spam it finds from you.

Mark comments as spam as you see fit and unmark any comments you feel were undeservingly marked as spam by clicking on the text as shown.                    

拡張機能の基本情報

名前 YouTube Comment Filter YouTube Comment Filter
ID dhanbbkjemobhmgfldpcaegfhcibknbd
公式URL https://chrome.google.com/webstore/detail/youtube-comment-filter/dhanbbkjemobhmgfldpcaegfhcibknbd
説明 Allows you to filter out Youtube spam.
ファイルサイズ 131 KB
インストール数 72
現在のバージョン 1.1.3
最終更新日 2015-03-28
公開日 2015-03-28
評価 2.00/5 合計 4 レビュー
開発者 averyboyd2
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Comment Filter",
    "description": "Allows you to filter out Youtube spam.",
    "version": "1.1.3",
    "icons": {
        "128": "FilTube128.png",
        "48": "FilTube48.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/apis.google.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "editor.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}