StackOverview

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

StackOverviewとは何ですか?

StackOverviewはJason Wangによって開発されたChromeの拡張機能で、その主な機能は「View quick stats about StackOverflow and StackExchange posts from Google search results」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

StackOverview拡張機能のCRXファイルをダウンロード

StackOverview拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 StackOverview StackOverview
ID oihjaeffdklalbagimogdhokoaidmain
公式URL https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain
説明 View quick stats about StackOverflow and StackExchange posts from Google search results
ファイルサイズ 5.78 KB
インストール数 44
現在のバージョン 1.0.4
最終更新日 2015-01-29
公開日 2015-01-29
評価 4.83/5 合計 6 レビュー
開発者 Jason Wang
支払い方法 free
対応言語 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"
    }
}