Mark Wrap
This extension wraps the selected text in a markdown link with the contents of the clipboard
Was ist Mark Wrap?
Mark Wrap ist eine Chrome-Erweiterung, die von bitoiu entwickelt wurde, und ihr Hauptmerkmal ist "This extension wraps the selected text in a markdown link with the contents of the clipboard".
Erweiterungsscreenshots
Mark Wrap-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mark Wrap-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
This extension wraps the selected text in a markdown link with the contents of the clipboard.
Grundlegende Informationen zur Erweiterung
Name | Mark Wrap |
ID | momphlnnfcfahjjofidepemapjghebmd |
Offizielle URL | https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd |
Beschreibung | This extension wraps the selected text in a markdown link with the contents of the clipboard |
Dateigröße | 16.78 KB |
Installationsanzahl | 40 |
Aktuelle Version | 0.1 |
Letztes Update | 2015-09-24 |
Veröffentlichungsdatum | 2015-09-23 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | bitoiu |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/bitoiu/markwrap |
Hilfeseite URL | https://github.com/bitoiu/markwrap/issues |
Unterstützte Sprachen | 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" } } |