Whatsapp Web Notification Customizer
Customize Whatsapp Web Notification Sound
什麼是Whatsapp Web Notification Customizer?
Whatsapp Web Notification Customizer是由Amer Sawan開發的Chrome擴展程式,該擴展的主要功能是“Customize Whatsapp Web Notification Sound”。
擴展截圖
下載Whatsapp Web Notification Customizer擴展crx文件
下載Whatsapp Web Notification Customizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Are you annoyed from the noisy Whatsapp™ web notification sound?! Are you frustrated that Whatsapp don't allow you to change that sound?! Using this extension you can easily customize the notification sound as you wish
擴展基本資訊
名稱 | |
ID | faglnjojbiggpodloaopkodgeholkcmj |
官方網址 | https://chrome.google.com/webstore/detail/whatsapp-web-notification/faglnjojbiggpodloaopkodgeholkcmj |
簡介 | Customize Whatsapp Web Notification Sound |
檔案大小 | 81.33 KB |
安裝次數 | 20 |
目前版本 | 0.0.0.1 |
更新時間 | 2020-08-30 |
上架時間 | 2020-08-30 |
開發者 | Amer Sawan |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://dev.amersaw.info |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Whatsapp Web Notification Customizer", "version": "0.0.0.1", "homepage_url": "https:\/\/github.com\/amersaw\/WhatsApp-Web-Notification-Customizer", "description": "Customize Whatsapp Web Notification Sound", "manifest_version": 2, "permissions": [ "storage", "webRequest", "webRequestBlocking", "https:\/\/web.whatsapp.com\/*" ], "options_page": "options.html", "page_action": { "default_popup": "popup.html", "default_icon": { "128": "images\/WappCustomNotification-128.png" } }, "icons": { "128": "images\/WappCustomNotification-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "whatsapp.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |