FeedFilter

Filters Youtube feed to based user-created custom rules.

FeedFilter là gì?

FeedFilter là một tiện ích mở rộng Chrome được phát triển bởi Allan Rempel, và tính năng chính của nó là "Filters Youtube feed to based user-created custom rules.".

Tải xuống tệp CRX của tiện ích mở rộng FeedFilter

Tải xuống các tệp mở rộng FeedFilter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FeedFilter FeedFilter
ID nkbglieidoihblpjhjbghfieddecefmd
URL Chính Thức https://chrome.google.com/webstore/detail/feedfilter/nkbglieidoihblpjhjbghfieddecefmd
Mô tả Filters Youtube feed to based user-created custom rules.
Kích Thước Tệp 56.02 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-02-06
Ngày Phát Hành 2015-02-06
Đánh Giá 3.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Allan Rempel
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}