Endless Tinder Liker

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

Cos'è Endless Tinder Liker?

Endless Tinder Liker è un'estensione di Chrome sviluppata da http://namata.ru, e la sua funzione principale è "This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Endless Tinder Liker

Scarica i file di estensione Endless Tinder Liker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Endless Tinder Liker Endless Tinder Liker
ID gciilpifakooegcdimdegnljlncclink
URL Ufficiale https://chrome.google.com/webstore/detail/endless-tinder-liker/gciilpifakooegcdimdegnljlncclink
Descrizione This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).
Dimensione del File 252 KB
Conteggio Installazioni 834
Versione Corrente 1.6
Ultimo Aggiornamento 2021-09-02
Data di Pubblicazione 2020-05-04
Valutazione 3.86/5 Totale 7 Valutazioni
Sviluppatore http://namata.ru
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://namata.ru/extensions/endlesstinderliker
URL della Pagina di Aiuto https://namata.ru/support/thanksforinstall
Lingue Supportate 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\/*"
    ]
}