Right-click contenteditable
Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.
Τι είναι το Right-click contenteditable;
Το Right-click contenteditable είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Paulius Sasnauskas, και η κύρια λειτουργία του είναι "Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Right-click contenteditable
Λήψη αρχείων επέκτασης Right-click contenteditable σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Right-click contenteditable |
ID | diomopkplfnggobbcphhdfkcnejdilpf |
Επίσημο URL | https://chromewebstore.google.com/detail/right-click-contenteditab/diomopkplfnggobbcphhdfkcnejdilpf |
Περιγραφή | Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it. |
Μέγεθος Αρχείου | 8.76 KB |
Αριθμός Εγκαταστάσεων | 87 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2023-07-20 |
Ημερομηνία Δημοσίευσης | 2021-01-16 |
Προγραμματιστής | Paulius Sasnauskas |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/PauliusSasnauskas/contenteditableExtension |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |