FeedFilter
Filters Youtube feed to based user-created custom rules.
O que é FeedFilter?
FeedFilter é uma extensão do Chrome desenvolvida por Allan Rempel, e sua principal característica é "Filters Youtube feed to based user-created custom rules.".
Baixar o arquivo CRX da Extensão FeedFilter
Baixe arquivos de extensão FeedFilter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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).
Informações Básicas da Extensão
Nome | |
ID | nkbglieidoihblpjhjbghfieddecefmd |
URL Oficial | https://chrome.google.com/webstore/detail/feedfilter/nkbglieidoihblpjhjbghfieddecefmd |
Descrição | Filters Youtube feed to based user-created custom rules. |
Tamanho do Arquivo | 56.02 KB |
Contagem de Instalações | 12 |
Versão Atual | 1.1 |
Última Atualização | 2015-02-06 |
Data de Publicação | 2015-02-06 |
Classificação | 3.25/5 Total de 4 Avaliações |
Desenvolvedor | Allan Rempel |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |