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"
    }
}