Go Present code highlighter
Highlights Go code in golang's Present slides.
What is Go Present code highlighter?
Go Present code highlighter is a Chrome extension developed by Unknown, and its main feature is "Highlights Go code in golang's Present slides.".
Extension Screenshots
Download Go Present code highlighter Extension CRX File
Download Go Present code highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension highlights Golang code in slides like this https://talks.golang.org/2014/readability.slide#10
Extension Basic Information
Name | Go Present code highlighter |
ID | depioieabmbifhmkflcagceedklkiahb |
Official URL | https://chromewebstore.google.com/detail/go-present-code-highlight/depioieabmbifhmkflcagceedklkiahb |
Description | Highlights Go code in golang's Present slides. |
File Size | 169 KB |
Installation Count | 123 |
Current Version | 1.0.0 |
Last Updated | 2018-11-27 |
Publish Date | 2018-11-27 |
Rating | 4.75/5 Total 4 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/josephbuchma/Go-Present-code-highlighter |
Supported Languages | 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 } |