Don't forget to like
Don't forget to like your favorite videos on youtube.com!
Что такое Don't forget to like?
Don't forget to like - это расширение Chrome, разработанное arismelachroinos, и его основная функция - "Don't forget to like your favorite videos on youtube.com!".
Снимки экрана расширения
Скачать файл CRX расширения Don't forget to like
Скачайте файлы расширений Don't forget to like в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a simple extension that likes/dislikes Youtube videos that you watch from specific channels that you choose, so you never forget to do it yourself.
Once you install the extension, a button will appear bellow every Youtube video you are watching, where you can choose:
● Manual (Default)
● Auto Like
● Auto Dislike
This extension does not like/dislike videos that you haven't opened, or videos you have watched in the past.
I put a lot of time and effort making this free extension. If you enjoy it and you wish to support me, you can donate via this link:
https://www.paypal.com/donate/?hosted_button_id=BTK97P92ZF29U Основная информация о расширении
| Название | |
| ID | kjkjajiikfcoaibbccgmlnikeekjeaka |
| Официальный URL | https://chromewebstore.google.com/detail/dont-forget-to-like/kjkjajiikfcoaibbccgmlnikeekjeaka |
| Описание | Don't forget to like your favorite videos on youtube.com! |
| Размер файла | 36.54 KB |
| Количество установок | 18 |
| Текущая Версия | 0.8 |
| Последнее Обновление | 2022-07-08 |
| Дата публикации | 2021-10-20 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | arismelachroinos |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://www.freeprivacypolicy.com/live/2c558424-4917-4625-89ff-5f1d72958783 |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Don't forget to like",
"version": "0.8",
"description": "Don't forget to like your favorite videos on youtube.com!",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"webNavigation"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"jquery.js",
"content.js"
]
}
],
"icons": {
"128": "icon.png"
}
} | |