Youtube Untrend
This extension simply removes the 'Trending' tab on the Youtube home page.
Vad är Youtube Untrend?
Youtube Untrend är en Chrome-tillägg utvecklad av dorian.grolaux, och dess huvudfunktion är "This extension simply removes the 'Trending' tab on the Youtube home page.".
Tilläggsskärmbilder
Ladda ner Youtube Untrend-förlängningens CRX-fil
Ladda ner Youtube Untrend-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Don't like this trending tab ? I don't either.
Grundläggande Information om Tillägg
Namn | |
ID | eopimnkjhiiigfakbhiehpiacdiolcpc |
Officiell webbadress | https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc |
Beskrivning | This extension simply removes the 'Trending' tab on the Youtube home page. |
Filstorlek | 29.2 KB |
Antal Installationer | 21 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2016-01-10 |
Publiceringsdatum | 2016-01-10 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | dorian.grolaux |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |