gTalk Syntax Highlighting
Automatic Syntax Highlighting for gChat.
gTalk Syntax Highlighting란 무엇입니까?
gTalk Syntax Highlighting은(는) pehrlich에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatic Syntax Highlighting for gChat."입니다.
확장 프로그램 스크린샷
gTalk Syntax Highlighting 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This plugin automatically detects when you type code whilst conversing with google talk, and adds syntax highlighting to it. - Allows inline code blocks with `backticks` - Detects code presence, and correct way to highlight said code. - Has a manual control, for cases where the auto-detection fails. - Optionally attach your own machine-learning server. - Project page on github: https://github.com/pehrlich/GTalkSyntax Important: You must reload your GMail tab after first installing this plugin. Once you do, any chat will auto-highlight code! CHANGES: 0.3.0 (accessories release) - Copy to clipboard, link to this plugin, in a lightly styled menu - Now supports gTalk with "Pictures in chat" labs extension turned off - Donate button, toggle switch, and fork banner on options page - Google analytics for click events - Sexy new icon.
확장 프로그램 기본 정보
이름 | gTalk Syntax Highlighting |
ID | okpdnaeoefggpaccmolhoaiffmmdoool |
공식 URL | https://chromewebstore.google.com/detail/gtalk-syntax-highlighting/okpdnaeoefggpaccmolhoaiffmmdoool |
설명 | Automatic Syntax Highlighting for gChat. |
파일 크기 | 549 KB |
설치 횟수 | 224 |
현재 버전 | 0.3.4 |
최근 업데이트 | 2013-02-17 |
출시 날짜 | 2013-02-16 |
평점 | 3.43/5 총 14 개의 평점 |
개발자 | pehrlich |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "gTalk Syntax Highlighting", "version": "0.3.4", "manifest_version": 2, "description": "Automatic Syntax Highlighting for gChat.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "stylesheets\/main.css", "stylesheets\/default.css" ], "js": [ "javascripts\/lib\/jquery-1.9.0.min.js", "javascripts\/lib\/util.js", "javascripts\/lib\/highlight.min.js", "javascripts\/lib\/classifier-0.1.0.min.js", "javascripts\/classifier_info.js", "javascripts\/gtalkSyntax.js", "javascripts\/highlight.js" ] } ], "permissions": [ "https:\/\/mail.google.com\/*", "storage", "clipboardWrite" ], "options_page": "options.html", "background": { "page": "background.html" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |