Automatic Swiper

Let Chrome swipe while you are at the gym!

什么是Automatic Swiper?

Automatic Swiper是由hawks.theorem开发的Chrome扩展程序,该扩展的主要功能是“Let Chrome swipe while you are at the gym!”。

扩展截图

screenshot

下载Automatic Swiper扩展crx文件

下载Automatic Swiper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Let Chrome automatically swipe "like" for you. 

Supports the following sites:
Tinder
Badoo
Plenty of fish
happn
Bumbl

1. Go to your dating app of choice.

2. Start and stop the extension by pressing the swiping hand icon next to the address bar.

The default time interval is set to 200ms, but can be changed in options.

Read more at https://hawkstheoremmaster.gatsbyjs.io/.

Please don't hesitate to contact if:
- You notice anything wrong. I already found my wife using this, so I'm not using it myself anymore.
- If your favorite swiping app is missing.
- If you have some improvement suggestions.

Credits:
Icon: https://www.flaticon.com/                    

扩展基本信息

名称 Automatic Swiper Automatic Swiper
ID jekkpajnjmaoppddbabmjjkifmcmakme
官方URL https://chromewebstore.google.com/detail/automatic-swiper/jekkpajnjmaoppddbabmjjkifmcmakme
简介 Let Chrome swipe while you are at the gym!
文件大小 131 KB
安装次数 899
当前版本 1.0.16
更新时间 2023-07-29
上架时间 2019-11-11
评分 4.50/5 共6次评分
开发者 hawks.theorem
电子邮箱 [email protected]
付费类型 free
扩展官网 https://hawkstheoremmaster.gatsbyjs.io/
帮助页面URL https://hawkstheoremmaster.gatsbyjs.io/introduction/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Automatic Swiper",
    "version": "1.0.16",
    "manifest_version": 3,
    "author": "[email protected]",
    "homepage_url": "https:\/\/hawkstheoremmaster.gatsbyjs.io\/",
    "description": "Let Chrome swipe while you are at the gym!",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tinder.com\/*"
            ],
            "js": [
                "tinder.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.badoo.com\/*"
            ],
            "js": [
                "badoo.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.bumble.com\/*"
            ],
            "js": [
                "bumble.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.pof.com\/*"
            ],
            "js": [
                "pof.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.happn.app\/*"
            ],
            "js": [
                "happn.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.okcupid.com\/*"
            ],
            "js": [
                "okcupid.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lovoo.com\/*"
            ],
            "js": [
                "lovoo.js"
            ]
        }
    ],
    "action": {
        "default_title": "Start swiping!",
        "default_icon": {
            "16": "swipe-right16.png",
            "32": "swipe-right32.png",
            "64": "swipe-right64.png",
            "128": "swipe-right128.png"
        }
    },
    "options_ui": {
        "page": "index.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "swipe-right16.png",
        "32": "swipe-right32.png",
        "64": "swipe-right64.png",
        "128": "swipe-right128.png"
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "activeTab",
        "debugger"
    ]
}