Mark Wrap

This extension wraps the selected text in a markdown link with the contents of the clipboard

Hvad er Mark Wrap?

Mark Wrap er en Chrome-udvidelse udviklet af bitoiu, og dens hovedfunktion er "This extension wraps the selected text in a markdown link with the contents of the clipboard".

Udvidelsesskærmbilleder

screenshot

Download Mark Wrap-udvidelses-CRX-fil

Download Mark Wrap-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 wraps the selected text in a markdown link with the contents of the clipboard.                    

Grundlæggende oplysninger om udvidelsen

Navn Mark Wrap Mark Wrap
ID momphlnnfcfahjjofidepemapjghebmd
Officiel URL https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd
Beskrivelse This extension wraps the selected text in a markdown link with the contents of the clipboard
Filstørrelse 16.78 KB
Antal Installationer 40
Nuværende Version 0.1
Senest Opdateret 2015-09-24
Udgivelsesdato 2015-09-23
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler bitoiu
Betalingsmetode free
Udvidelseswebsted https://github.com/bitoiu/markwrap
Hjælpeside-URL https://github.com/bitoiu/markwrap/issues
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mark Wrap",
    "description": "This extension wraps the selected text in a markdown link with the contents of the clipboard",
    "version": "0.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "clipboardRead"
    ],
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "Command+Shift+V"
            },
            "description": "Toggle feature foo"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "19": "assets\/icon19.png",
        "38": "assets\/icon38.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}