StackOverflow Search Tool
This extension helps to search on SO, and learn about your intention
StackOverflow Search Tool란 무엇입니까?
StackOverflow Search Tool은(는) luyihan900225에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps to search on SO, and learn about your intention"입니다.
확장 프로그램 스크린샷
StackOverflow Search Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A useful tool to help you search on stackoverflow whenever you need. You will also help us to learn about programming learning behavior by sharing your search behavior.
확장 프로그램 기본 정보
이름 | |
ID | hnjcboogacdbabimdiblilojlldfkhlm |
공식 URL | https://chrome.google.com/webstore/detail/stackoverflow-search-tool/hnjcboogacdbabimdiblilojlldfkhlm |
설명 | This extension helps to search on SO, and learn about your intention |
파일 크기 | 159 KB |
설치 횟수 | 93 |
현재 버전 | 3.0.3 |
최근 업데이트 | 2016-11-09 |
출시 날짜 | 2016-11-09 |
개발자 | luyihan900225 |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StackOverflow Search Tool", "description": "This extension helps to search on SO, and learn about your intention", "version": "3.0.3", "icons": { "19": "images\/icon19.png", "38": "images\/icon38.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/stackoverflow.com\/*", "https:\/\/www.google.com\/*" ], "js": [ "jquery-2.1.4.min.js", "jquery.autocomplete.js", "record.js" ], "css": [ "jquery.autocomplete.css" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "activeTab", "storage", "unlimitedStorage" ] } |