Sorted Stack

An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…

Cos'è Sorted Stack?

Sorted Stack è un'estensione di Chrome sviluppata da SwickDev, e la sua funzione principale è "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Sorted Stack

Scarica i file di estensione Sorted Stack 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

                        An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as moving this answer to the first place position in the list.

Normally the person can asking the question can select a single answer as accepted, but often times other answers arise that were too late to the game or the asker didn't like. This extension always places the answers in sorted order by the number of votes the answer received.                    

Informazioni di Base sull'Estensione

Nome Sorted Stack Sorted Stack
ID fpbbollnpcfogjaccdegemhcmpbeglkn
URL Ufficiale https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn
Descrizione An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
Dimensione del File 33.16 KB
Conteggio Installazioni 22
Versione Corrente 0.1
Ultimo Aggiornamento 2016-04-27
Data di Pubblicazione 2016-04-26
Valutazione 4.40/5 Totale 5 Valutazioni
Sviluppatore SwickDev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sorted Stack",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/stackoverflow.com\/questions\/*",
                "https:\/\/stackoverflow.com\/questions\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "icons": {
        "48": "images\/icon.png"
    }
}