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).".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Endless Tinder Liker

قم بتنزيل ملفات الامتداد Endless Tinder Liker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Endless Tinder Liker Endless Tinder Liker
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
عنوان صفحة المساعدة 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\/*"
    ]
}