Go Present code highlighter
Highlights Go code in golang's Present slides.
Qu'est-ce que Go Present code highlighter ?
Go Present code highlighter est une extension Chrome développée par Unknown, et sa fonction principale est "Highlights Go code in golang's Present slides.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Go Present code highlighter
Téléchargez les fichiers d'extension Go Present code highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension highlights Golang code in slides like this https://talks.golang.org/2014/readability.slide#10
Informations de Base sur l'Extension
Nom | Go Present code highlighter |
ID | depioieabmbifhmkflcagceedklkiahb |
URL Officiel | https://chromewebstore.google.com/detail/go-present-code-highlight/depioieabmbifhmkflcagceedklkiahb |
Description | Highlights Go code in golang's Present slides. |
Taille du Fichier | 169 KB |
Nombre d'Installations | 123 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2018-11-27 |
Date de Publication | 2018-11-27 |
Évaluation | 4.75/5 Total 4 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/josephbuchma/Go-Present-code-highlighter |
Langues Prises en Charge | 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 } |