StackOverview

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

What is StackOverview?

StackOverview is a Chrome extension developed by Jason Wang, and its main feature is "View quick stats about StackOverflow and StackExchange posts from Google search results".

Extension Screenshots

screenshot
screenshot
screenshot

Download StackOverview Extension CRX File

Download StackOverview extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name StackOverview StackOverview
ID oihjaeffdklalbagimogdhokoaidmain
Official URL https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain
Description View quick stats about StackOverflow and StackExchange posts from Google search results
File Size 5.78 KB
Installation Count 44
Current Version 1.0.4
Last Updated 2015-01-29
Publish Date 2015-01-29
Rating 4.83/5 Total 6 Ratings
Developer Jason Wang
Payment Type free
Supported Languages 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"
    }
}