Endless Tinder Liker

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

Vad är Endless Tinder Liker?

Endless Tinder Liker är en Chrome-tillägg utvecklad av http://namata.ru, och dess huvudfunktion är "This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).".

Tilläggsskärmbilder

screenshot

Ladda ner Endless Tinder Liker-förlängningens CRX-fil

Ladda ner Endless Tinder Liker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Endless Tinder Liker Endless Tinder Liker
ID gciilpifakooegcdimdegnljlncclink
Officiell webbadress https://chrome.google.com/webstore/detail/endless-tinder-liker/gciilpifakooegcdimdegnljlncclink
Beskrivning This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).
Filstorlek 252 KB
Antal Installationer 834
Aktuell Version 1.6
Senast Uppdaterad 2021-09-02
Publiceringsdatum 2020-05-04
Betyg 3.86/5 Totalt 7 Betyg
Utvecklare http://namata.ru
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://namata.ru/extensions/endlesstinderliker
Hjälpsida URL https://namata.ru/support/thanksforinstall
Stödda Språk 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\/*"
    ]
}