Right-click contenteditable

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

Was ist Right-click contenteditable?

Right-click contenteditable ist eine Chrome-Erweiterung, die von Paulius Sasnauskas entwickelt wurde, und ihr Hauptmerkmal ist "Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.".

Erweiterungsscreenshots

screenshot
screenshot

Right-click contenteditable-Erweiterungs-CRX-Datei herunterladen

Laden Sie Right-click contenteditable-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Right-click contenteditable Right-click contenteditable
ID diomopkplfnggobbcphhdfkcnejdilpf
Offizielle URL https://chromewebstore.google.com/detail/right-click-contenteditab/diomopkplfnggobbcphhdfkcnejdilpf
Beschreibung Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.
Dateigröße 8.76 KB
Installationsanzahl 87
Aktuelle Version 1.1
Letztes Update 2023-07-20
Veröffentlichungsdatum 2021-01-16
Entwickler Paulius Sasnauskas
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/PauliusSasnauskas/contenteditableExtension
Unterstützte Sprachen 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"
            ]
        }
    ]
}