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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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