Notifier for WhatsApp Web
Unofficial enhacement for WhatsApp™ Web notifications.
Notifier for WhatsApp Web란 무엇입니까?
Notifier for WhatsApp Web은(는) Social Apps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial enhacement for WhatsApp™ Web notifications."입니다.
확장 프로그램 스크린샷
Notifier for WhatsApp Web 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get WhatsApp™ notifications directly on Google Chrome without opening WhatsApp™ Web! Then, just open a New Tab and start chatting! ------------------------------------------------------------------------------------------ WhatsApp™ is a smartphone messenger, now also available from the WEB! Download the latest version of WhatApp to your phone to use WhatsApp™ Web. WhatsApp™ for Android: http://bit.ly/whatsapp_googleplay WhatsApp™ for iOS: http://bit.ly/WhatsApp_iOS ------------------------------------------------------------------------------------------ Frequently Asked Questions (FAQ): WHAT DEVICES SUPPORT WHATSAPP™ WEB? WhatsApp Web is currently supported by Android and iOS. WHAT'S THE ORANGE ICON WITH AN EXCLAMATION MARK (!) IN IT? This icon appears when WhatsApp™ web loses connection to phone. WHAT'S THE RED ICON WITH AN (X) IN IT? This icon appears when a session of WhatsApp™ Web has been opened in other broswer or PC. WHAT'S THE GRAY ICON WITH (...) IN IT? This icon appears when WhatsApp™ Web is loading. ------------------------------------------------------------------------------------------ WhatsApp is a trademark of WhatsApp LLC. This extension is an unofficial enhacement for WhatsApp™ Web and is not related in any way to WhatsApp LLC.
확장 프로그램 기본 정보
이름 | Notifier for WhatsApp Web |
ID | kaoholkoedbpjiangnchpfchhmageifp |
공식 URL | https://chromewebstore.google.com/detail/notifier-for-whatsapp-web/kaoholkoedbpjiangnchpfchhmageifp |
설명 | Unofficial enhacement for WhatsApp™ Web notifications. |
파일 크기 | 43.69 KB |
설치 횟수 | 403,736 |
현재 버전 | 2.1 |
최근 업데이트 | 2021-11-23 |
출시 날짜 | 2015-07-03 |
평점 | 4.25/5 총 1216 개의 평점 |
개발자 | Social Apps |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.privacypolicies.com/live/a18260b5-70f3-46cc-87b9-f267f552b559 |
지원되는 언어 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "short_name": "Notifier for WhatsApp Web", "version": "2.1", "browser_action": { "default_title": "__MSG_openApp__", "default_icon": { "19": "images\/19.png", "38": "images\/38.png" } }, "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.whatsapp.com\/*" ], "js": [ "script.js" ], "all_frames": true } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "*:\/\/*.whatsapp.com\/*", "tabs", "webRequest", "webRequestBlocking" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |