StackOverview

View quick stats about StackOverflow and StackExchange posts from Google search results

ما هو StackOverview؟

StackOverview هو إضافة Chrome تم تطويرها بواسطة Jason Wang، والميزة الرئيسية لها هي "View quick stats about StackOverflow and StackExchange posts from Google search results".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة StackOverview

قم بتنزيل ملفات الامتداد StackOverview بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Get information about how many answers a StackOverflow or StackExchange post has and if there is an accepted answer for it straight from your Google search results. A green badge indicates that there is an accepted answer, yellow indicates that there is no accepted answer, and red indicates that there are no answers.                    

معلومات أساسية عن التمديد

الاسم StackOverview StackOverview
ID oihjaeffdklalbagimogdhokoaidmain
عنوان URL الرسمي https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain
الوصف View quick stats about StackOverflow and StackExchange posts from Google search results
حجم الملف 5.78 KB
عدد التثبيتات 44
النسخة الحالية 1.0.4
آخر تحديث 2015-01-29
تاريخ النشر 2015-01-29
تقييم 4.83/5 مجموع تقييمات 6
المطور Jason Wang
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.4",
    "name": "StackOverview",
    "author": "Jason Wang",
    "description": "View quick stats about StackOverflow and StackExchange posts from Google search results",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/*",
                "*:\/\/www.google.ca\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/*.stackoverflow.com\/*",
        "https:\/\/*.stackoverflow.com\/*",
        "http:\/\/*.stackexchange.com\/*",
        "https:\/\/*.stackexchange.com\/*"
    ],
    "icons": {
        "48": "icons\/so48trans.png",
        "128": "icons\/so128trans.png"
    }
}