Copy as Markdown
Copy the selected HTML as Markdown
Cos'è Copy as Markdown?
Copy as Markdown è un'estensione di Chrome sviluppata da sjmyuan, e la sua funzione principale è "Copy the selected HTML as Markdown".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Copy as Markdown
Scarica i file di estensione Copy as Markdown in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Copy as Markdown |
ID | pcmnmggfchmeohmflkfocnkackgcnlln |
URL Ufficiale | https://chromewebstore.google.com/detail/copy-as-markdown/pcmnmggfchmeohmflkfocnkackgcnlln |
Descrizione | Copy the selected HTML as Markdown |
Dimensione del File | 32.32 KB |
Conteggio Installazioni | 237 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2020-03-03 |
Data di Pubblicazione | 2020-03-02 |
Valutazione | 3.25/5 Totale 4 Valutazioni |
Sviluppatore | sjmyuan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/sjmyuan/copy-as-markdown |
URL della Pagina di Aiuto | https://github.com/sjmyuan/copy-as-markdown |
URL della Pagina della Politica sulla Privacy | https://github.com/sjmyuan/copy-as-markdown/blob/master/privacy-policy.md |
Lingue Supportate | 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" } |