Sorted Stack

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

Sorted Stack क्या है?

Sorted Stack SwickDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sorted Stack एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Sorted Stack Sorted Stack
ID fpbbollnpcfogjaccdegemhcmpbeglkn
आधिकारिक URL https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn
विवरण An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
फ़ाइल का आकार 33.16 KB
स्थापना संख्या 22
वर्तमान संस्करण 0.1
अंतिम अपडेट 2016-04-27
प्रकाशन तिथि 2016-04-26
रेटिंग 4.40/5 कुल 5 रेटिंग्स
डेवलपर SwickDev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}