Right-click contenteditable

Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.

Cos'è Right-click contenteditable?

Right-click contenteditable è un'estensione di Chrome sviluppata da Paulius Sasnauskas, e la sua funzione principale è "Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Right-click contenteditable

Scarica i file di estensione Right-click contenteditable 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

                        This extension adds a "Add contenteditable" option to the right-click menu. Upon pressing, the element, which the user was targeting gets a contenteditable attribute, so the user can edit it freely.
To remove this attribute, click the button again.

Use this to edit typos in the text when you want to read it multiple times.
Use this to make fun screenshots of pages where the text should be something else than what was typed.

More info about contenteditable:
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contenteditable                    

Informazioni di Base sull'Estensione

Nome Right-click contenteditable Right-click contenteditable
ID diomopkplfnggobbcphhdfkcnejdilpf
URL Ufficiale https://chromewebstore.google.com/detail/right-click-contenteditab/diomopkplfnggobbcphhdfkcnejdilpf
Descrizione Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.
Dimensione del File 8.76 KB
Conteggio Installazioni 87
Versione Corrente 1.1
Ultimo Aggiornamento 2023-07-20
Data di Pubblicazione 2021-01-16
Sviluppatore Paulius Sasnauskas
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/PauliusSasnauskas/contenteditableExtension
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Right-click contenteditable",
    "version": "1.1",
    "description": "Right click on an element and press \"Add contenteditable\" to add a contenteditable attribute to it. Click again to remove it.",
    "author": "Paulius Sasnauskas",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}