Simple Plain Text Copy
Easily copy the selected text without formatting to the clipboard via right-click menu.
Simple Plain Text Copy क्या है?
Simple Plain Text Copy SimpleTools.nl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily copy the selected text without formatting to the clipboard via right-click menu."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simple Plain Text Copy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
1. Visit the page that you want 2. Select the formatted text that you want to copy as plain text 3. You will see "Copy As Plain Text" option in right-click menu 4. It's done. Your text is copied to your clipboard without any formatting Permission Description 1. Data Access: This allows addon to understand the selected text 2. Clipboard: Your selected text will copied to your clipboard
एक्सटेंशन की मूल जानकारी
नाम | Simple Plain Text Copy |
ID | plmcamaccbekbempmgeihfckecaoglog |
आधिकारिक URL | https://chromewebstore.google.com/detail/simple-plain-text-copy/plmcamaccbekbempmgeihfckecaoglog |
विवरण | Easily copy the selected text without formatting to the clipboard via right-click menu. |
फ़ाइल का आकार | 799 KB |
स्थापना संख्या | 168 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2019-12-03 |
प्रकाशन तिथि | 2019-11-28 |
डेवलपर | SimpleTools.nl |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.simpletools.nl/ |
गोपनीयता नीति पृष्ठ URL | https://www.simpletools.nl/privacy.php |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_title": "__MSG_extName__", "default_popup": "copy.html", "default_icon": "icons\/exif128.png" }, "default_locale": "en", "description": "__MSG_extDesc__", "manifest_version": 2, "name": "__MSG_extName__", "icons": { "128": "icons\/exif128.png", "64": "icons\/exif64.png", "32": "icons\/exif32.png", "16": "icons\/exif16.png" }, "permissions": [ "activeTab", "contextMenus", "clipboardWrite" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/jquery-3.2.1.min.js", "js\/content-script.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "version": "1.0.2" } |