Mark Wrap
This extension wraps the selected text in a markdown link with the contents of the clipboard
What is Mark Wrap?
Mark Wrap is a Chrome extension developed by bitoiu, and its main feature is "This extension wraps the selected text in a markdown link with the contents of the clipboard".
Extension Screenshots
Download Mark Wrap Extension CRX File
Download Mark Wrap extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension wraps the selected text in a markdown link with the contents of the clipboard.
Extension Basic Information
Name | Mark Wrap |
ID | momphlnnfcfahjjofidepemapjghebmd |
Official URL | 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 |
File Size | 16.78 KB |
Installation Count | 40 |
Current Version | 0.1 |
Last Updated | 2015-09-24 |
Publish Date | 2015-09-23 |
Rating | 3.67/5 Total 3 Ratings |
Developer | bitoiu |
Payment Type | free |
Extension Website | https://github.com/bitoiu/markwrap |
Help Page URL | https://github.com/bitoiu/markwrap/issues |
Supported Languages | 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" } } |