Whave

Conveniently switch between light and dark theme on Whatsapp Web.

Whaveคืออะไร?

Whave เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mspn และคุณลักษณะหลักของมันคือ "Conveniently switch between light and dark theme on Whatsapp Web."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Whave

ดาวน์โหลดไฟล์ส่วนขยาย Whave ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        # Overview
Whave is a browser extension for managing WhatsApp web theme. Manually control your theme changes or have it change based on the daylight time. 
Good for devices without automatic system themes changes or users who use a fixed device theme but want theme changes on WhatsApp.

**Features**
1. Automatically switch theme between day and night time
2. Switch between themes manually

**How To Use**
1. Install extension and open your WhatsApp Web in a Chrome tab
2. Whave will automatically start monitoring the time to change your theme
3. To force set a theme you want
    - While on WhatsApp Web tab, click on the extension icon in your browser toolbar
    - Under section 'Set a theme manually' click the theme option you want
4. To stop using the forced setting and move back to time based switches
    - While on WhatsApp Web tab, click on the extension icon in your browser toolbar
    - Under section 'Reset manual theme settings' click the button 'reset'
5. To uninstall the theme
    - While on WhatsApp Web tab, right click or alt-click on the extension icon in your browser toolbar
    - Select 'Remove from Chrome...'
6. The 'Set custom times' feature is not yet released. Still working on that :)

**FAQs**
- Theme is not changing at the right time: Please reload WhatsApp and click the reset button
- Does this sync across my devices: Sort of, settings will not apply across devices but the extension can be re-installed and used anywhere supported

**Permissions**
- ActiveTab
- DeclarativeContent
Whave only runs in a tab to change the website theme.
WhatsApp is a trademark of Facebook. Android is a trademark of Google Inc. Use of this trademarks and services is subject to respective Permissions. **Developers**
The project is available on Github if you want to have some fun and collaborate on this and other projects. Find repository at Github-Whave

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Whave Whave
ID onmmaefeecidiliagmmbelkaeicmaang
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/whave/onmmaefeecidiliagmmbelkaeicmaang
คำอธิบาย Conveniently switch between light and dark theme on Whatsapp Web.
ขนาดไฟล์ 12.04 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 1.04
อัปเดตครั้งล่าสุด 2020-11-17
วันที่เผยแพร่ 2020-11-03
ผู้พัฒนา mspn
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Whave",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "version": "1.04",
    "description": "Conveniently switch between light and dark theme on Whatsapp Web.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Whave for WhatsApp Web",
        "default_popup": "home.html",
        "default_icon": {
            "16": "images\/whave16.png",
            "32": "images\/whave32.png",
            "48": "images\/whave48.png",
            "128": "images\/whave128.png"
        }
    },
    "icons": {
        "16": "images\/whave16.png",
        "32": "images\/whave32.png",
        "48": "images\/whave48.png",
        "128": "images\/whave128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "theme.js"
            ]
        }
    ]
}