Sorted Stack

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

Qu'est-ce que Sorted Stack ?

Sorted Stack est une extension Chrome développée par SwickDev, et sa fonction principale est "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Sorted Stack

Téléchargez les fichiers d'extension Sorted Stack au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sorted Stack Sorted Stack
ID fpbbollnpcfogjaccdegemhcmpbeglkn
URL Officiel https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn
Description An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
Taille du Fichier 33.16 KB
Nombre d'Installations 22
Version Actuelle 0.1
Dernière Mise à Jour 2016-04-27
Date de Publication 2016-04-26
Évaluation 4.40/5 Total 5 Évaluations
Développeur SwickDev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}