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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}