Endless Tinder Liker

This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).

Co to jest Endless Tinder Liker?

Endless Tinder Liker to rozszerzenie Chrome opracowane przez http://namata.ru, a jego główną funkcją jest „This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Endless Tinder Liker

Pobierz pliki rozszerzeń Endless Tinder Liker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Endless Tinder Liker Endless Tinder Liker
ID gciilpifakooegcdimdegnljlncclink
Oficjalny URL https://chrome.google.com/webstore/detail/endless-tinder-liker/gciilpifakooegcdimdegnljlncclink
Opis This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).
Rozmiar pliku 252 KB
Liczba instalacji 834
Aktualna Wersja 1.6
Ostatnia Aktualizacja 2021-09-02
Data Publikacji 2020-05-04
Ocena 3.86/5 Łącznie 7 Oceny
Deweloper http://namata.ru
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://namata.ru/extensions/endlesstinderliker
Adres URL Strony Pomocy https://namata.ru/support/thanksforinstall
Obsługiwane Języki 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\/*"
    ]
}