WheresApp
Make your web whatsapp work friendly
WheresApp란 무엇입니까?
WheresApp은(는) aleks.krnjaic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make your web whatsapp work friendly"입니다.
확장 프로그램 스크린샷
WheresApp 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Provides customization options for your Web Whatsapp interface, allowing you to hide your contact list, hide your current chat header, extend the interface to fill to the edges of the window, hide contact images and make the chat plain, hide timestamps and read receipts.
Release Notes
Version 0.0.1:
- Initial release
Version 0.0.2:
- Images in contact list now hidden in boring mode
Version 0.0.3:
- Hover text fix
Version 0.0.4:
- Added ability to hide contact names
- Changed boring mode to maintain contact image placeholders
Version 0.0.5:
- Fixed color and box shadow after whatsapp changes
Version 0.0.6:
- Boring mode links and images now no longer have green background
Version 0.0.7:
- Boring mode fix (flex align and color)
Developed by Aleks Krnjaic and Rebeka Nikoloska 확장 프로그램 기본 정보
| 이름 | |
| ID | blonmediheekdlhdhfnfohegmhblapcb |
| 공식 URL | https://chromewebstore.google.com/detail/wheresapp/blonmediheekdlhdhfnfohegmhblapcb |
| 설명 | Make your web whatsapp work friendly |
| 파일 크기 | 128 KB |
| 설치 횟수 | 2,825 |
| 현재 버전 | 0.0.7 |
| 최근 업데이트 | 2020-02-20 |
| 출시 날짜 | 2020-02-20 |
| 평점 | 5.00/5 총 1 개의 평점 |
| 개발자 | aleks.krnjaic |
| 결제 유형 | free |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "WheresApp",
"version": "0.0.7",
"manifest_version": 2,
"description": "Make your web whatsapp work friendly",
"homepage_url": "https:\/\/github.com\/alek5k",
"icons": {
"16": "icons\/icons16.png",
"48": "icons\/icons48.png",
"128": "icons\/icons128.png"
},
"default_locale": "en",
"background": {
"page": "src\/bg\/background.html",
"persistent": true
},
"options_page": "src\/options\/index.html",
"page_action": {
"default_icon": "icons\/icons19.png",
"default_title": "WheresApp",
"default_popup": "src\/page_action\/page_action.html"
},
"permissions": [
"https:\/\/web.whatsapp.com\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/web.whatsapp.com\/*"
],
"css": [
"src\/inject\/inject.css"
]
},
{
"matches": [
"https:\/\/web.whatsapp.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |