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開發的Chrome擴展程式,該擴展的主要功能是“An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…”。

擴展截圖

screenshot
screenshot

下載Sorted Stack擴展crx文件

下載Sorted Stack擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}