Code Search
Find coding answers quickly
Code Search란 무엇입니까?
Code Search은(는) peter.k.albert에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find coding answers quickly"입니다.
확장 프로그램 스크린샷
Code Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get questions and answers from stackoverflow, when you search on google. The stackoverflow results will be displayed on the right side of the normal google search results. The stackoverflow results will only be shown if a coding word is included in the search query (for example one of these: "js", "javascript", "css", "python", "php", "string").
확장 프로그램 기본 정보
이름 | Code Search |
ID | nejihamodfjhekdjmakngaomcejoaamh |
공식 URL | https://chromewebstore.google.com/detail/code-search/nejihamodfjhekdjmakngaomcejoaamh |
설명 | Find coding answers quickly |
파일 크기 | 578 KB |
설치 횟수 | 321 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2020-07-20 |
출시 날짜 | 2019-11-13 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | peter.k.albert |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Code Search", "version": "0.1.2", "description": "Find coding answers quickly", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/search*", "http:\/\/www.google.com\/search*" ], "run_at": "document_start", "js": [ "materialize.min.js", "content.js", "google-code-prettify\/prettify.js" ], "css": [ "allcss.css", "iconfont\/material-icons.css", "google-code-prettify\/prettify.css" ], "all_frames": true } ], "browser_action": { "default_popup": "popup.html", "default_title": "Turn on\/off extra search results on the right side", "default_icon": { "16": "res\/16.png", "36": "res\/36.png", "48": "res\/48.png", "72": "res\/mipmap-72\/ic_launcher.png", "128": "res\/128.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/cswebapp.appspot.com\/*", "storage" ], "web_accessible_resources": [ "iconfont\/MaterialIcons-Regular.woff2", "iconfont\/MaterialIcons-Regular.woff", "iconfont\/MaterialIcons-Regular.ttf", "google-code-prettify\/*.js", "google-code-prettify\/*.css", "popup.js" ] } |