Copy as Markdown
Copy the selected HTML as Markdown
Wat is Copy as Markdown?
Copy as Markdown is een Chrome-extensie ontwikkeld door sjmyuan, en de belangrijkste functie is "Copy the selected HTML as Markdown".
Extensie Screenshots
Download het CRX-bestand van de extensie Copy as Markdown
Download Copy as Markdown-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Copy as Markdown |
ID | pcmnmggfchmeohmflkfocnkackgcnlln |
Officiële URL | https://chromewebstore.google.com/detail/copy-as-markdown/pcmnmggfchmeohmflkfocnkackgcnlln |
Beschrijving | Copy the selected HTML as Markdown |
Bestandsgrootte | 32.32 KB |
Aantal Installaties | 237 |
Huidige Versie | 0.0.5 |
Laatst Bijgewerkt | 2020-03-03 |
Publicatiedatum | 2020-03-02 |
Beoordeling | 3.25/5 Totaal 4 Beoordelingen |
Ontwikkelaar | sjmyuan |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/sjmyuan/copy-as-markdown |
Help Pagina-URL | https://github.com/sjmyuan/copy-as-markdown |
URL van de Privacybeleid Pagina | https://github.com/sjmyuan/copy-as-markdown/blob/master/privacy-policy.md |
Ondersteunde Talen | 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" } |