Copy as Markdown
Copy the selected HTML as Markdown
Hvad er Copy as Markdown?
Copy as Markdown er en Chrome-udvidelse udviklet af sjmyuan, og dens hovedfunktion er "Copy the selected HTML as Markdown".
Udvidelsesskærmbilleder
Download Copy as Markdown-udvidelses-CRX-fil
Download Copy 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
This extension can help you covert the selected HTML to Markdown, and copy the Markdown to your clipboard. There are three ways you can use it 1. Click Copy as Markdown icon in the toolbar. 2. Click the right button and click Copy as Markdown menu. 3. Press Alt+Shift+Y on Windows or Option+Shift+Y on Mac.
Grundlæggende oplysninger om udvidelsen
Navn | Copy as Markdown |
ID | pcmnmggfchmeohmflkfocnkackgcnlln |
Officiel URL | https://chromewebstore.google.com/detail/copy-as-markdown/pcmnmggfchmeohmflkfocnkackgcnlln |
Beskrivelse | Copy the selected HTML as Markdown |
Filstørrelse | 32.32 KB |
Antal Installationer | 237 |
Nuværende Version | 0.0.5 |
Senest Opdateret | 2020-03-03 |
Udgivelsesdato | 2020-03-02 |
Bedømmelse | 3.25/5 Samlet 4 Bedømmelser |
Udvikler | sjmyuan |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/sjmyuan/copy-as-markdown |
Hjælpeside-URL | https://github.com/sjmyuan/copy-as-markdown |
URL til Fortrolighedspolitik Side | https://github.com/sjmyuan/copy-as-markdown/blob/master/privacy-policy.md |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.5", "name": "Copy as Markdown", "manifest_version": 2, "description": "Copy the selected HTML as Markdown", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "114": "img\/icon-114.png", "128": "img\/icon-128.png" }, "browser_action": { "default_title": "Copy as Markdown" }, "background": { "scripts": [ "js\/background_script.bundle.js" ], "persistent": false }, "web_accessible_resources": [ "js\/content_script.bundle.js" ], "commands": { "copy-as-markdown": { "suggested_key": { "default": "Alt+Shift+Y", "mac": "Alt+Shift+Y" }, "description": "Copy as Markdown" } }, "permissions": [ "contextMenus", "activeTab", "clipboardWrite" ], "homepage_url": "https:\/\/github.com\/sjmyuan\/copy-as-markdown" } |