StackOverview

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

Wat is StackOverview?

StackOverview is een Chrome-extensie ontwikkeld door Jason Wang, en de belangrijkste functie is "View quick stats about StackOverflow and StackExchange posts from Google search results".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie StackOverview

Download StackOverview-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam StackOverview StackOverview
ID oihjaeffdklalbagimogdhokoaidmain
Officiële URL https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain
Beschrijving View quick stats about StackOverflow and StackExchange posts from Google search results
Bestandsgrootte 5.78 KB
Aantal Installaties 44
Huidige Versie 1.0.4
Laatst Bijgewerkt 2015-01-29
Publicatiedatum 2015-01-29
Beoordeling 4.83/5 Totaal 6 Beoordelingen
Ontwikkelaar Jason Wang
Betalingswijze free
Ondersteunde Talen 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"
    }
}