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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |