Sort Markdown List

Sorts markdown lists alphabetically.

Cos'è Sort Markdown List?

Sort Markdown List è un'estensione di Chrome sviluppata da luwei.here, e la sua funzione principale è "Sorts markdown lists alphabetically.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Sort Markdown List

Scarica i file di estensione Sort Markdown List in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Sort Markdown List Sort Markdown List
ID kdimmoeigkklnfdfalcjejfnpcabimdm
URL Ufficiale https://chromewebstore.google.com/detail/sort-markdown-list/kdimmoeigkklnfdfalcjejfnpcabimdm
Descrizione Sorts markdown lists alphabetically.
Dimensione del File 18.41 KB
Conteggio Installazioni 61
Versione Corrente 1.1
Ultimo Aggiornamento 2014-01-23
Data di Pubblicazione 2014-01-23
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore luwei.here
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/weilu/sort-markdown
URL della Pagina di Aiuto https://github.com/weilu/sort-markdown
Lingue Supportate 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"
        ]
    }
}