Mark Wrap

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

Wat is Mark Wrap?

Mark Wrap is een Chrome-extensie ontwikkeld door bitoiu, en de belangrijkste functie is "This extension wraps the selected text in a markdown link with the contents of the clipboard".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mark Wrap

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

Basisinformatie over de Extensie

Naam Mark Wrap Mark Wrap
ID momphlnnfcfahjjofidepemapjghebmd
Officiële URL https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd
Beschrijving This extension wraps the selected text in a markdown link with the contents of the clipboard
Bestandsgrootte 16.78 KB
Aantal Installaties 40
Huidige Versie 0.1
Laatst Bijgewerkt 2015-09-24
Publicatiedatum 2015-09-23
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar bitoiu
Betalingswijze free
Extensiewebsite https://github.com/bitoiu/markwrap
Help Pagina-URL https://github.com/bitoiu/markwrap/issues
Ondersteunde Talen 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"
    }
}