Mark Wrap

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

Qu'est-ce que Mark Wrap ?

Mark Wrap est une extension Chrome développée par bitoiu, et sa fonction principale est "This extension wraps the selected text in a markdown link with the contents of the clipboard".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Mark Wrap

Téléchargez les fichiers d'extension Mark Wrap au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Mark Wrap Mark Wrap
ID momphlnnfcfahjjofidepemapjghebmd
URL Officiel https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd
Description This extension wraps the selected text in a markdown link with the contents of the clipboard
Taille du Fichier 16.78 KB
Nombre d'Installations 40
Version Actuelle 0.1
Dernière Mise à Jour 2015-09-24
Date de Publication 2015-09-23
Évaluation 3.67/5 Total 3 Évaluations
Développeur bitoiu
Type de Paiement free
Site Web de l'Extension https://github.com/bitoiu/markwrap
URL de la Page d'Aide https://github.com/bitoiu/markwrap/issues
Langues Prises en Charge 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"
    }
}