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). 擴展基本資訊
| 名稱 | |
| ID | nkbglieidoihblpjhjbghfieddecefmd |
| 官方網址 | 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"
}
} | |