StackOverview

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

¿Qué es StackOverview?

StackOverview es una extensión de Chrome desarrollada por Jason Wang, y su función principal es "View quick stats about StackOverflow and StackExchange posts from Google search results".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión StackOverview

Descarga archivos de extensión StackOverview en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre StackOverview StackOverview
ID oihjaeffdklalbagimogdhokoaidmain
URL Oficial https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain
Descripción View quick stats about StackOverflow and StackExchange posts from Google search results
Tamaño del Archivo 5.78 KB
Cantidad de Instalaciones 44
Versión Actual 1.0.4
Última Actualización 2015-01-29
Fecha de Publicación 2015-01-29
Calificación 4.83/5 Total de 6 Calificaciones
Desarrollador Jason Wang
Tipo de Pago free
Idiomas Soportados 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"
    }
}