Sort Markdown List

Sorts markdown lists alphabetically.

What is Sort Markdown List?

Sort Markdown List is a Chrome extension developed by luwei.here, and its main feature is "Sorts markdown lists alphabetically.".

Extension Screenshots

screenshot
screenshot

Download Sort Markdown List Extension CRX File

Download Sort Markdown List 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

                        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                    

Extension Basic Information

Name Sort Markdown List Sort Markdown List
ID kdimmoeigkklnfdfalcjejfnpcabimdm
Official URL https://chromewebstore.google.com/detail/sort-markdown-list/kdimmoeigkklnfdfalcjejfnpcabimdm
Description Sorts markdown lists alphabetically.
File Size 18.41 KB
Installation Count 61
Current Version 1.1
Last Updated 2014-01-23
Publish Date 2014-01-23
Rating 5.00/5 Total 1 Ratings
Developer luwei.here
Payment Type free
Extension Website https://github.com/weilu/sort-markdown
Help Page URL https://github.com/weilu/sort-markdown
Supported Languages 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"
        ]
    }
}