Sorted Stack

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

Vad är Sorted Stack?

Sorted Stack är en Chrome-tillägg utvecklad av SwickDev, och dess huvudfunktion är "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Sorted Stack-förlängningens CRX-fil

Ladda ner Sorted Stack-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Sorted Stack Sorted Stack
ID fpbbollnpcfogjaccdegemhcmpbeglkn
Officiell webbadress https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn
Beskrivning An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
Filstorlek 33.16 KB
Antal Installationer 22
Aktuell Version 0.1
Senast Uppdaterad 2016-04-27
Publiceringsdatum 2016-04-26
Betyg 4.40/5 Totalt 5 Betyg
Utvecklare SwickDev
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}