StackOverview

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

Cos'è StackOverview?

StackOverview è un'estensione di Chrome sviluppata da Jason Wang, e la sua funzione principale è "View quick stats about StackOverflow and StackExchange posts from Google search results".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione StackOverview

Scarica i file di estensione StackOverview in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome StackOverview StackOverview
ID oihjaeffdklalbagimogdhokoaidmain
URL Ufficiale https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain
Descrizione View quick stats about StackOverflow and StackExchange posts from Google search results
Dimensione del File 5.78 KB
Conteggio Installazioni 44
Versione Corrente 1.0.4
Ultimo Aggiornamento 2015-01-29
Data di Pubblicazione 2015-01-29
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore Jason Wang
Tipo di Pagamento free
Lingue Supportate 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"
    }
}