Automatic Swiper
Let Chrome swipe while you are at the gym!
Automatic Swiper क्या है?
Automatic Swiper hawks.theorem द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Let Chrome swipe while you are at the gym!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Automatic Swiper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |