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是由http://namata.ru开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).”。

扩展截图

screenshot

下载Endless Tinder Liker扩展crx文件

下载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.                    

扩展基本信息

名称 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
帮助页面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\/*"
    ]
}