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文件
下載gTalk Syntax Highlighting擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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'" } |