Paste as Markdown
Paste as Markdown.
Hvad er Paste as Markdown?
Paste as Markdown er en Chrome-udvidelse udviklet af Medusis, og dens hovedfunktion er "Paste as Markdown.".
Udvidelsesskærmbilleder
Download Paste as Markdown-udvidelses-CRX-fil
Download Paste as Markdown-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.)
Grundlæggende oplysninger om udvidelsen
Navn | Paste as Markdown |
ID | lmelpnmpkekjahgdihfajfebaddffokl |
Officiel URL | https://chromewebstore.google.com/detail/paste-as-markdown/lmelpnmpkekjahgdihfajfebaddffokl |
Beskrivelse | Paste as Markdown. |
Filstørrelse | 67.66 KB |
Antal Installationer | 2,514 |
Nuværende Version | 0.5.7.2 |
Senest Opdateret | 2020-02-19 |
Udgivelsesdato | 2020-02-19 |
Bedømmelse | 4.25/5 Samlet 8 Bedømmelser |
Udvikler | Medusis |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://markitdown.medusis.com |
Understøttede Sprog | 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" } } |