How Do You Delete The Like Button [Youtube]
This extension allows the user to remove the like button from Youtube videos.
Что такое How Do You Delete The Like Button [Youtube]?
How Do You Delete The Like Button [Youtube] - это расширение Chrome, разработанное x.hiei.jaganshi.x, и его основная функция - "This extension allows the user to remove the like button from Youtube videos.".
Снимки экрана расширения
Скачать файл CRX расширения How Do You Delete The Like Button [Youtube]
Скачайте файлы расширений How Do You Delete The Like Button [Youtube] в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
How do you delete the like button? Now its possible. Click the extension icon to remove the like button from youtube videos, so you don't "accidentally" click on it. Automatically removes "Thumbs Up" from Logan Paul videos.
Основная информация о расширении
Название | |
ID | eolomlinhghnnjmbopefbpodbgpbggpb |
Официальный URL | https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb |
Описание | This extension allows the user to remove the like button from Youtube videos. |
Размер файла | 7.02 KB |
Количество установок | 18 |
Текущая Версия | 1.1 |
Последнее Обновление | 2018-03-19 |
Дата публикации | 2018-03-19 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | x.hiei.jaganshi.x |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "How Do You Delete The Like Button [Youtube]", "description": "This extension allows the user to remove the like button from Youtube videos.", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon16.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ], "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'" } |