Youtube Untrend
This extension simply removes the 'Trending' tab on the Youtube home page.
Cos'è Youtube Untrend?
Youtube Untrend è un'estensione di Chrome sviluppata da dorian.grolaux, e la sua funzione principale è "This extension simply removes the 'Trending' tab on the Youtube home page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Untrend
Scarica i file di estensione Youtube Untrend 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
Don't like this trending tab ? I don't either. Informazioni di Base sull'Estensione
| Nome | |
| ID | eopimnkjhiiigfakbhiehpiacdiolcpc |
| URL Ufficiale | https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc |
| Descrizione | This extension simply removes the 'Trending' tab on the Youtube home page. |
| Dimensione del File | 29.2 KB |
| Conteggio Installazioni | 21 |
| Versione Corrente | 0.2 |
| Ultimo Aggiornamento | 2016-01-10 |
| Data di Pubblicazione | 2016-01-10 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | dorian.grolaux |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Youtube Untrend",
"short_name": "Removes the 'Trending' tab on Youtube's home page",
"version": "0.2",
"description": "This extension simply removes the 'Trending' tab on the Youtube home page.",
"permissions": [
"activeTab",
"*:\/\/www.youtube.com\/"
],
"icons": {
"16": "icons\/yt_untrend16.png",
"48": "icons\/yt_untrend48.png",
"128": "icons\/yt_untrend128.png"
},
"offline_enabled": true,
"page_action": {
"default_icon": {
"16": "icons\/yt_untrend16.png",
"48": "icons\/yt_untrend48.png"
},
"default_title": "Youtube Untrend"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/",
"*:\/\/www.youtube.com\/feed\/*"
],
"js": [
"script.js"
]
}
]
} | |