Sort Markdown List
Sorts markdown lists alphabetically.
Sort Markdown Listとは何ですか?
Sort Markdown Listはluwei.hereによって開発されたChromeの拡張機能で、その主な機能は「Sorts markdown lists alphabetically.」です。
拡張機能のスクリーンショット
Sort Markdown List拡張機能のCRXファイルをダウンロード
Sort Markdown List拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
How to use:
1. select the list you'd like to sort in the textarea
2. click on the sort icon
3. your selected list should now be sorted alphabetically
Assumptions:
- markdown is edited in the only textarea on the page
- sorting ignores case
*Icon: Sort designed hy Lemon Liu from the Noun Project 拡張機能の基本情報
| 名前 | |
| ID | kdimmoeigkklnfdfalcjejfnpcabimdm |
| 公式URL | https://chromewebstore.google.com/detail/sort-markdown-list/kdimmoeigkklnfdfalcjejfnpcabimdm |
| 説明 | Sorts markdown lists alphabetically. |
| ファイルサイズ | 18.41 KB |
| インストール数 | 61 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2014-01-23 |
| 公開日 | 2014-01-23 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | luwei.here |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/weilu/sort-markdown |
| ヘルプページのURL | https://github.com/weilu/sort-markdown |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Sort Markdown List",
"description": "Sorts markdown lists alphabetically.",
"version": "1.1",
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"scripts": [
"background.js"
]
}
} | |