CodeBuddy
An awesome code buddy to help you find stuff fast!
CodeBuddy란 무엇입니까?
CodeBuddy은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An awesome code buddy to help you find stuff fast!"입니다.
확장 프로그램 스크린샷
CodeBuddy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Code-E is an extension that utilizes natural language recognition and chrome's web speech API to provide voice control to chrome! some basic commands: Code-E, (Open) (I need a) (give me a) new tab - opens new tab Code-E, (Open) (I need a) (give me a) new *google/spotify/facebook/MDN tab Code-E, Close current tab - closes current tab Code-E, (tell me a) (how about a) joke - scrapes joke API for random joke. Code-E, Hows the weather? - scrapes weather API for current weather. Code-E, (find) (whats) *term - where term is some term in Javascript - currently only JS terms/functions are recognized for V1.0. Code-E, go away - closes cody.
확장 프로그램 기본 정보
이름 | |
ID | jegkmedeellhdfabmlgiakkebbhijbcp |
공식 URL | https://chromewebstore.google.com/detail/codebuddy/jegkmedeellhdfabmlgiakkebbhijbcp |
설명 | An awesome code buddy to help you find stuff fast! |
파일 크기 | 325 KB |
설치 횟수 | 21 |
현재 버전 | 1.0 |
최근 업데이트 | 2015-12-02 |
출시 날짜 | 2015-12-01 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CodeBuddy", "version": "1.0", "description": "An awesome code buddy to help you find stuff fast!", "icons": { "48": "robit_48.png", "128": "robit_128.png" }, "browser_action": { "default_icon": { "19": "robit_sleep_19.png", "38": "robit_48.png" }, "default_title": "CodeBuddy" }, "permissions": [ "tabs", "audio", "tts", "ttsEngine", "http:\/\/devdocs.io\/", "https:\/\/ajax.googleapis.com\/", "http:\/\/*\/" ], "tts_engine": { "voices": [ { "voice_name": "Google US English", "lang": "en-US", "gender": "female", "event_types": [ "start", "marker", "end" ] } ] }, "background": { "scripts": [ "background.js" ] } } |