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
} | |