Louie - Stay In Touch
Louie helps you stay in touch with your friends on Whatsapp
Louie - Stay In Touch란 무엇입니까?
Louie - Stay In Touch은(는) omribit에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Louie helps you stay in touch with your friends on Whatsapp"입니다.
확장 프로그램 스크린샷
Louie - Stay In Touch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Louie lets you stay in touch with your friends and family and anyone who matters to you. You simply click on a contact, set how often you would like to stay in touch and Louie tells you when it's time to send a message to that person. Louie is much more clever than just a simple reminder! Louie will remind us to talk to someone only if we haven't done so for the period of time we defined for ourselves. Currently, Louie doesn't update in realtime and requires refreshes on every change, BUT! fear you must not! we are currently working on making updating Louie on realtime!
확장 프로그램 기본 정보
이름 | Louie - Stay In Touch |
ID | cimpomloljeebpnbiacgkclehbkecbhh |
공식 URL | https://chromewebstore.google.com/detail/louie-stay-in-touch/cimpomloljeebpnbiacgkclehbkecbhh |
설명 | Louie helps you stay in touch with your friends on Whatsapp |
파일 크기 | 354 KB |
설치 횟수 | 31 |
현재 버전 | 2.0.5 |
최근 업데이트 | 2020-02-20 |
출시 날짜 | 2020-02-20 |
평점 | 4.75/5 총 4 개의 평점 |
개발자 | omribit |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Boredude/Louie |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Louie - Stay In Touch", "short_name": "Louie", "description": "Louie helps you stay in touch with your friends on Whatsapp", "version": "2.0.5", "permissions": [ "storage" ], "icons": { "128": "images\/Color.png" }, "browser_action": { "default_icon": "images\/Color.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "core_injection.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "core\/UI.js", "lib\/tingle\/tingle.min.js", "lib\/drop\/drop.js", "lib\/sweetalert\/sweetalert.min.js", "lib\/native-toast\/native-toast.js" ], "css": [ "styles.css", "lib\/tingle\/tingle.min.css", "lib\/drop\/css\/drop-theme-basic.css", "lib\/sweetalert\/sweetalert.css", "lib\/native-toast\/native-toast.css" ] } ], "web_accessible_resources": [ "lib\/tingle\/tingle.min.js", "lib\/drop\/drop.js", "lib\/sweetalert\/sweetalert.min.js", "lib\/native-toast\/native-toast.js", "core\/*", "images\/*" ] } |