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 Paulius Sasnauskas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Right-click contenteditable एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |