Youtube Untrend
This extension simply removes the 'Trending' tab on the Youtube home page.
Wat is Youtube Untrend?
Youtube Untrend is een Chrome-extensie ontwikkeld door dorian.grolaux, en de belangrijkste functie is "This extension simply removes the 'Trending' tab on the Youtube home page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Untrend
Download Youtube Untrend-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Don't like this trending tab ? I don't either. Basisinformatie over de Extensie
| Naam | |
| ID | eopimnkjhiiigfakbhiehpiacdiolcpc |
| Officiële URL | https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc |
| Beschrijving | This extension simply removes the 'Trending' tab on the Youtube home page. |
| Bestandsgrootte | 29.2 KB |
| Aantal Installaties | 21 |
| Huidige Versie | 0.2 |
| Laatst Bijgewerkt | 2016-01-10 |
| Publicatiedatum | 2016-01-10 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | dorian.grolaux |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |