Mark Wrap
This extension wraps the selected text in a markdown link with the contents of the clipboard
Mark Wrapとは何ですか?
Mark Wrapはbitoiuによって開発されたChromeの拡張機能で、その主な機能は「This extension wraps the selected text in a markdown link with the contents of the clipboard」です。
拡張機能のスクリーンショット
Mark Wrap拡張機能のCRXファイルをダウンロード
Mark Wrap拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension wraps the selected text in a markdown link with the contents of the clipboard. 拡張機能の基本情報
| 名前 | |
| 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"
}
} | |