StackOverview

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

Co je StackOverview?

StackOverview je rozšíření Chrome vyvinuté Jason Wang, a jeho hlavní funkcí je „View quick stats about StackOverflow and StackExchange posts from Google search results“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření StackOverview

Stáhněte si soubory rozšíření StackOverview ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název StackOverview StackOverview
ID oihjaeffdklalbagimogdhokoaidmain
Oficiální URL https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain
Popis View quick stats about StackOverflow and StackExchange posts from Google search results
Velikost souboru 5.78 KB
Počet instalací 44
Aktuální Verze 1.0.4
Poslední Aktualizace 2015-01-29
Datum Vydání 2015-01-29
Hodnocení 4.83/5 Celkem 6 Hodnocení
Vývojář Jason Wang
Typ Platby free
Podporované Jazyky 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"
    }
}