FeedFilter
Filters Youtube feed to based user-created custom rules.
Что такое FeedFilter?
FeedFilter - это расширение Chrome, разработанное Allan Rempel, и его основная функция - "Filters Youtube feed to based user-created custom rules.".
Скачать файл CRX расширения FeedFilter
Скачайте файлы расширений 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 |
| Официальный 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"
}
} | |