Automatic Swiper
Let Chrome swipe while you are at the gym!
Automatic Swiperคืออะไร?
Automatic Swiper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hawks.theorem และคุณลักษณะหลักของมันคือ "Let Chrome swipe while you are at the gym!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Automatic Swiper
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } |