Go Present code highlighter
Highlights Go code in golang's Present slides.
Go Present code highlighterとは何ですか?
Go Present code highlighterはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Highlights Go code in golang's Present slides.」です。
拡張機能のスクリーンショット
Go Present code highlighter拡張機能のCRXファイルをダウンロード
Go Present code highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension highlights Golang code in slides like this https://talks.golang.org/2014/readability.slide#10 拡張機能の基本情報
| 名前 | |
| ID | depioieabmbifhmkflcagceedklkiahb |
| 公式URL | https://chromewebstore.google.com/detail/go-present-code-highlight/depioieabmbifhmkflcagceedklkiahb |
| 説明 | Highlights Go code in golang's Present slides. |
| ファイルサイズ | 169 KB |
| インストール数 | 123 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2018-11-27 |
| 公開日 | 2018-11-27 |
| 評価 | 4.75/5 合計 4 レビュー |
| 開発者 | Unknown |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/josephbuchma/Go-Present-code-highlighter |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Go Present code highlighter",
"version": "1.0.0",
"description": "Highlights Go code in golang's Present slides.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"page_action": {
"default_icon": "icons\/icon19.png",
"default_title": "Go Present code highlight",
"default_popup": "src\/popup.html"
},
"options_ui": {
"page": "src\/options.html",
"chrome_style": true,
"open_in_tab": true
},
"permissions": [
"tabs",
"storage"
],
"background": {
"scripts": [
"src\/background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*.slide"
],
"css": [
"lib\/hl\/styles\/brown-paper.css",
"src\/contentStyle.css"
],
"js": [
"lib\/jquery.min.js",
"lib\/hl\/highlight.pack.js",
"src\/initHighlight.js"
]
}
],
"web_accessible_resources": [
"lib\/hl\/styles\/*.css"
],
"manifest_version": 2
} | |