FeedFilter
Filters Youtube feed to based user-created custom rules.
Cos'è FeedFilter?
FeedFilter è un'estensione di Chrome sviluppata da Allan Rempel, e la sua funzione principale è "Filters Youtube feed to based user-created custom rules.".
Scarica il file CRX dell'estensione FeedFilter
Scarica i file di estensione FeedFilter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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). Informazioni di Base sull'Estensione
| Nome | |
| ID | nkbglieidoihblpjhjbghfieddecefmd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/feedfilter/nkbglieidoihblpjhjbghfieddecefmd |
| Descrizione | Filters Youtube feed to based user-created custom rules. |
| Dimensione del File | 56.02 KB |
| Conteggio Installazioni | 12 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2015-02-06 |
| Data di Pubblicazione | 2015-02-06 |
| Valutazione | 3.25/5 Totale 4 Valutazioni |
| Sviluppatore | Allan Rempel |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |