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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Sorted Stack

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}