Right-click contenteditable

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

Qu'est-ce que Right-click contenteditable ?

Right-click contenteditable est une extension Chrome développée par Paulius Sasnauskas, et sa fonction principale est "Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Right-click contenteditable

Téléchargez les fichiers d'extension Right-click contenteditable au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Right-click contenteditable Right-click contenteditable
ID diomopkplfnggobbcphhdfkcnejdilpf
URL Officiel https://chromewebstore.google.com/detail/right-click-contenteditab/diomopkplfnggobbcphhdfkcnejdilpf
Description Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.
Taille du Fichier 8.76 KB
Nombre d'Installations 87
Version Actuelle 1.1
Dernière Mise à Jour 2023-07-20
Date de Publication 2021-01-16
Développeur Paulius Sasnauskas
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/PauliusSasnauskas/contenteditableExtension
Langues Prises en Charge 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"
            ]
        }
    ]
}