WhatsApp Editor

An extension to edit WhatsApp messages

什麼是WhatsApp Editor?

WhatsApp Editor是由Ofri Yehuda開發的Chrome擴展程式,該擴展的主要功能是“An extension to edit WhatsApp messages”。

擴展截圖

screenshot

下載WhatsApp Editor擴展crx文件

下載WhatsApp Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        WhatsApp Editor: Take Full Control Over Your WhatsApp Conversations
What is WhatsApp Editor?
WhatsApp Editor is a revolutionary Chrome extension designed to empower your experience on WhatsApp Web. Have you ever wished you could edit a sent WhatsApp message? Or customize the way your chats look? Now you can!

Key Features
Edit Sent Messages: Ever made a typo in a message that you wish you could fix? Now you can.
Message Customization: Change fonts, add emoticons, and insert images like never before.
Quick Access Popup: Easily access all features through a popup window that sits conveniently on your browser toolbar.                    

擴展基本資訊

名稱 WhatsApp Editor WhatsApp Editor
ID jlgcngamnmdbbkedkgmpgffmdbfkeiga
官方網址 https://chromewebstore.google.com/detail/whatsapp-editor/jlgcngamnmdbbkedkgmpgffmdbfkeiga
簡介 An extension to edit WhatsApp messages
檔案大小 224 KB
安裝次數 57
目前版本 1.1
更新時間 2023-09-14
上架時間 2023-09-14
評分 5.00/5 共 5 次評分
開發者 Ofri Yehuda
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://www.privacypolicygenerator.info/live.php?token=PuIr8l9OYfb92mgUTlRnHoEnfssCgdH2
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WhatsApp Editor",
    "version": "1.1",
    "description": "An extension to edit WhatsApp messages",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "hoverMenu.html",
                "hoverMenuCompact.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}