Sorted Stack

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

What is Sorted Stack?

Sorted Stack is a Chrome extension developed by SwickDev, and its main feature is "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".

Extension Screenshots

screenshot
screenshot

Download Sorted Stack Extension CRX File

Download Sorted Stack 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

                        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.                    

Extension Basic Information

Name Sorted Stack Sorted Stack
ID fpbbollnpcfogjaccdegemhcmpbeglkn
Official URL 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…
File Size 33.16 KB
Installation Count 22
Current Version 0.1
Last Updated 2016-04-27
Publish Date 2016-04-26
Rating 4.40/5 Total 5 Ratings
Developer SwickDev
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}