WhatsApp Notification Changer

A simple extension that allows the user to change the notification sound of web.whatsapp.com.

WhatsApp Notification Changerとは何ですか?

WhatsApp Notification Changerはrafael.galaniによって開発されたChromeの拡張機能で、その主な機能は「A simple extension that allows the user to change the notification sound of web.whatsapp.com.」です。

拡張機能のスクリーンショット

screenshot

WhatsApp Notification Changer拡張機能のCRXファイルをダウンロード

WhatsApp Notification Changer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A simple extension that allows the user to change the notification sound of web.whatsapp.com.                    

拡張機能の基本情報

名前 WhatsApp Notification Changer WhatsApp Notification Changer
ID jnlilnljmhioncbmofmdlphmagmegkde
公式URL https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde
説明 A simple extension that allows the user to change the notification sound of web.whatsapp.com.
ファイルサイズ 83.43 KB
インストール数 460
現在のバージョン 1.0
最終更新日 2020-07-30
公開日 2020-07-30
評価 4.00/5 合計 6 レビュー
開発者 rafael.galani
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Notification Changer",
    "version": "1.0",
    "description": "A simple extension that allows the user to change the notification sound of web.whatsapp.com.",
    "permissions": [
        "unlimitedStorage",
        "declarativeContent",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/web.whatsapp.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "modifier.js"
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}