Mark Wrap
This extension wraps the selected text in a markdown link with the contents of the clipboard
Что такое Mark Wrap?
Mark Wrap - это расширение Chrome, разработанное bitoiu, и его основная функция - "This extension wraps the selected text in a markdown link with the contents of the clipboard".
Снимки экрана расширения
Скачать файл CRX расширения Mark Wrap
Скачайте файлы расширений Mark Wrap в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension wraps the selected text in a markdown link with the contents of the clipboard.
Основная информация о расширении
Название | Mark Wrap |
ID | momphlnnfcfahjjofidepemapjghebmd |
Официальный URL | https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd |
Описание | This extension wraps the selected text in a markdown link with the contents of the clipboard |
Размер файла | 16.78 KB |
Количество установок | 40 |
Текущая Версия | 0.1 |
Последнее Обновление | 2015-09-24 |
Дата публикации | 2015-09-23 |
Рейтинг | 3.67/5 Всего 3 оценок |
Разработчик | bitoiu |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/bitoiu/markwrap |
URL страницы помощи | https://github.com/bitoiu/markwrap/issues |
Поддерживаемые языки | 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" } } |