Copy as Markdown

Copy the selected HTML as Markdown

Vad är Copy as Markdown?

Copy as Markdown är en Chrome-tillägg utvecklad av sjmyuan, och dess huvudfunktion är "Copy the selected HTML as Markdown".

Tilläggsskärmbilder

screenshot

Ladda ner Copy as Markdown-förlängningens CRX-fil

Ladda ner Copy as Markdown-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Copy as Markdown Copy as Markdown
ID pcmnmggfchmeohmflkfocnkackgcnlln
Officiell webbadress https://chromewebstore.google.com/detail/copy-as-markdown/pcmnmggfchmeohmflkfocnkackgcnlln
Beskrivning Copy the selected HTML as Markdown
Filstorlek 32.32 KB
Antal Installationer 237
Aktuell Version 0.0.5
Senast Uppdaterad 2020-03-03
Publiceringsdatum 2020-03-02
Betyg 3.25/5 Totalt 4 Betyg
Utvecklare sjmyuan
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/sjmyuan/copy-as-markdown
Hjälpsida URL https://github.com/sjmyuan/copy-as-markdown
URL till Sekretesspolicy Sidan https://github.com/sjmyuan/copy-as-markdown/blob/master/privacy-policy.md
Stödda Språk 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"
}