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”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | oihjaeffdklalbagimogdhokoaidmain |
| 官方網址 | 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"
}
} | |