FeedFilter

Filters Youtube feed to based user-created custom rules.

什么是FeedFilter?

FeedFilter是由Allan Rempel开发的Chrome扩展程序,该扩展的主要功能是“Filters Youtube feed to based user-created custom rules.”。

下载FeedFilter扩展crx文件

下载FeedFilter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Filters your subscription feed based on custom rules. For example, I wanted to subscribe to only some of the videos that a channel published, while ignoring the rest.

Supports regular expressions (for those who know what that is).                    

扩展基本信息

名称 FeedFilter FeedFilter
ID nkbglieidoihblpjhjbghfieddecefmd
官方URL https://chrome.google.com/webstore/detail/feedfilter/nkbglieidoihblpjhjbghfieddecefmd
简介 Filters Youtube feed to based user-created custom rules.
文件大小 56.02 KB
安装次数 12
当前版本 1.1
更新时间 2015-02-06
上架时间 2015-02-06
评分 3.25/5 共4次评分
开发者 Allan Rempel
付费类型 free
支持的语言 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "version": "1.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "https:\/\/www.youtube.com\/"
    ],
    "default_locale": "en",
    "page_action": {
        "default_icon": "filter24.png",
        "default_title": "__MSG_name__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "filter.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "filter16.png",
        "24": "filter24.png",
        "128": "filter128.png"
    }
}