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!"입니다.
확장 프로그램 스크린샷
Automatic Swiper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |