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