WhatsApp Editor

An extension to edit WhatsApp messages

Co je WhatsApp Editor?

WhatsApp Editor je rozšíření Chrome vyvinuté Ofri Yehuda, a jeho hlavní funkcí je „An extension to edit WhatsApp messages“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření WhatsApp Editor

Stáhněte si soubory rozšíření WhatsApp Editor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název WhatsApp Editor WhatsApp Editor
ID jlgcngamnmdbbkedkgmpgffmdbfkeiga
Oficiální URL https://chromewebstore.google.com/detail/whatsapp-editor/jlgcngamnmdbbkedkgmpgffmdbfkeiga
Popis An extension to edit WhatsApp messages
Velikost souboru 224 KB
Počet instalací 57
Aktuální Verze 1.1
Poslední Aktualizace 2023-09-14
Datum Vydání 2023-09-14
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář Ofri Yehuda
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.privacypolicygenerator.info/live.php?token=PuIr8l9OYfb92mgUTlRnHoEnfssCgdH2
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}