Paste as Markdown
Paste as Markdown.
Paste as Markdown क्या है?
Paste as Markdown Medusis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Paste as Markdown."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Paste as Markdown एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Paste the content of the clipboard as Markdown, in any web form. The content of the clipboard can come from anywhere (a text editor, a graphics program, another web page, etc.) and be in rich text format with italics, bold, lists, etc., and it will be converted to Markdown upon pasting. The clipboard content is unchanged, the conversion happens when pasting. Everything happens within the browser, nothing is sent outside of the browser. New (starting with 5.7.2): can now interpret inline styles bold & italic (for Google Docs, etc.)
एक्सटेंशन की मूल जानकारी
नाम | Paste as Markdown |
ID | lmelpnmpkekjahgdihfajfebaddffokl |
आधिकारिक URL | https://chromewebstore.google.com/detail/paste-as-markdown/lmelpnmpkekjahgdihfajfebaddffokl |
विवरण | Paste as Markdown. |
फ़ाइल का आकार | 67.66 KB |
स्थापना संख्या | 2,514 |
वर्तमान संस्करण | 0.5.7.2 |
अंतिम अपडेट | 2020-02-19 |
प्रकाशन तिथि | 2020-02-19 |
रेटिंग | 4.25/5 कुल 8 रेटिंग्स |
डेवलपर | Medusis |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://markitdown.medusis.com |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Paste as Markdown", "short_name": "Paste-Mkdown", "version": "0.5.7.2", "description": "Paste as Markdown.", "homepage_url": "http:\/\/markitdown.medusis.com", "permissions": [ "activeTab", "clipboardRead", "contextMenus" ], "background": { "scripts": [ "lib\/lodash.min.js", "js\/mkutils.js", "lib\/turndown.js", "lib\/turndown-plugin-gfm.js", "js\/html2mk.js", "js\/browser\/background.js" ] }, "icons": { "16": "icons\/paste-mk_16.png", "19": "icons\/paste-mk_19.png", "38": "icons\/paste-mk_38.png", "48": "icons\/paste-mk_48.png", "128": "icons\/paste-mk_128.png" }, "commands": { "paste-mk": { "suggested_key": { "default": "Alt+C" }, "description": "Paste as Markdown" } }, "browser_action": { "default_icon": { "19": "icons\/paste-mk_19.png" }, "default_title": "MarkItDown - Click for help", "default_popup": "popup_help.html" } } |