WhatsApp Editor

An extension to edit WhatsApp messages

Cos'è WhatsApp Editor?

WhatsApp Editor è un'estensione di Chrome sviluppata da Ofri Yehuda, e la sua funzione principale è "An extension to edit WhatsApp messages".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione WhatsApp Editor

Scarica i file di estensione WhatsApp Editor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome WhatsApp Editor WhatsApp Editor
ID jlgcngamnmdbbkedkgmpgffmdbfkeiga
URL Ufficiale https://chromewebstore.google.com/detail/whatsapp-editor/jlgcngamnmdbbkedkgmpgffmdbfkeiga
Descrizione An extension to edit WhatsApp messages
Dimensione del File 224 KB
Conteggio Installazioni 57
Versione Corrente 1.1
Ultimo Aggiornamento 2023-09-14
Data di Pubblicazione 2023-09-14
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Ofri Yehuda
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.privacypolicygenerator.info/live.php?token=PuIr8l9OYfb92mgUTlRnHoEnfssCgdH2
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}