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 |
| 官方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"
}
} | |