select and convert to markdown

Copy select text and convert to Markdown code

Was ist select and convert to markdown?

select and convert to markdown ist eine Chrome-Erweiterung, die von suziwen1 entwickelt wurde, und ihr Hauptmerkmal ist "Copy select text and convert to Markdown code".

Erweiterungsscreenshots

screenshot

select and convert to markdown-Erweiterungs-CRX-Datei herunterladen

Laden Sie select and convert to markdown-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Select And Convert To Markdown
Select And Convert To Markdown is a google chrome extension which support copy select text and convert to markdown code. The converted code is store at clipboard.

Features
support generate current tab to a markdown code when you right click on the empty area of the page.
[page title](page url)
support generate image markdown code when right click on a image.
[](image url)
support generate link markdown code when right-click on a link
[selectionText](link url)
support generate imageLink markdown code when right click on a image which is contained in "a" element.
[[selectionText](image url)](linkurl)
support generate selectionText markdown code when select a range text and right-click.                    

Grundlegende Informationen zur Erweiterung

Name select and convert to markdown select and convert to markdown
ID mbfkalihcbaebieafiojpdaccfpalhfi
Offizielle URL https://chrome.google.com/webstore/detail/select-and-convert-to-mar/mbfkalihcbaebieafiojpdaccfpalhfi
Beschreibung Copy select text and convert to Markdown code
Dateigröße 92.41 KB
Installationsanzahl 36
Aktuelle Version 0.1.0
Letztes Update 2019-03-04
Veröffentlichungsdatum 2019-02-27
Entwickler suziwen1
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "select and convert to markdown",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Copy select text and convert to Markdown code",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "toolbar-copy-convert-markdown.png",
        "48": "toolbar-copy-convert-markdown.png",
        "128": "toolbar-copy-convert-markdown.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "content_script.js"
            ]
        }
    ]
}