YT End Cards Hider
YT End Cards Hider
Что такое YT End Cards Hider?
YT End Cards Hider - это расширение Chrome, разработанное Ayudh Kumar Gupta, и его основная функция - "YT End Cards Hider".
Снимки экрана расширения
Скачать файл CRX расширения YT End Cards Hider
Скачайте файлы расширений YT End Cards Hider в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Hide annoying End Cards from YouTube videos. Remove suggested videos that show up as thumbnails at the end of a YouTube video with this simple extension.
Основная информация о расширении
Название | YT End Cards Hider |
ID | jokabnhdpdjkpncammcloeagdnnooima |
Официальный URL | https://chromewebstore.google.com/detail/yt-end-cards-hider/jokabnhdpdjkpncammcloeagdnnooima |
Описание | YT End Cards Hider |
Размер файла | 12.68 KB |
Количество установок | 1,100 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-05-07 |
Дата публикации | 2020-05-07 |
Рейтинг | 4.73/5 Всего 15 оценок |
Разработчик | Ayudh Kumar Gupta |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YT End Cards Hider", "version": "1.0", "description": "YT End Cards Hider", "manifest_version": 2, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |