Youtube Untrend
This extension simply removes the 'Trending' tab on the Youtube home page.
Что такое Youtube Untrend?
Youtube Untrend - это расширение Chrome, разработанное dorian.grolaux, и его основная функция - "This extension simply removes the 'Trending' tab on the Youtube home page.".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Untrend
Скачайте файлы расширений Youtube Untrend в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Don't like this trending tab ? I don't either.
Основная информация о расширении
Название | |
ID | eopimnkjhiiigfakbhiehpiacdiolcpc |
Официальный URL | https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc |
Описание | This extension simply removes the 'Trending' tab on the Youtube home page. |
Размер файла | 29.2 KB |
Количество установок | 21 |
Текущая Версия | 0.2 |
Последнее Обновление | 2016-01-10 |
Дата публикации | 2016-01-10 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | dorian.grolaux |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } ] } |