Endless Tinder Liker
This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).
Что такое Endless Tinder Liker?
Endless Tinder Liker - это расширение Chrome, разработанное http://namata.ru, и его основная функция - "This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).".
Снимки экрана расширения
Скачать файл CRX расширения Endless Tinder Liker
Скачайте файлы расширений Endless Tinder Liker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them). Just click on the extension icon and the “Run” button to start putting likes and the “Stop” button to finish it.
Основная информация о расширении
Название | |
ID | gciilpifakooegcdimdegnljlncclink |
Официальный URL | https://chrome.google.com/webstore/detail/endless-tinder-liker/gciilpifakooegcdimdegnljlncclink |
Описание | This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them). |
Размер файла | 252 KB |
Количество установок | 834 |
Текущая Версия | 1.6 |
Последнее Обновление | 2021-09-02 |
Дата публикации | 2020-05-04 |
Рейтинг | 3.86/5 Всего 7 оценок |
Разработчик | http://namata.ru |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://namata.ru/extensions/endlesstinderliker |
URL страницы помощи | https://namata.ru/support/thanksforinstall |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Endless Tinder Liker", "description": "This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).", "version": "1.6", "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/tinder.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "*:\/\/tinder.com\/*" ] } |