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
官方網址 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
        }
    ]
}