Go Present code highlighter
Highlights Go code in golang's Present slides.
ما هو Go Present code highlighter؟
Go Present code highlighter هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Highlights Go code in golang's Present slides.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Go Present code highlighter
قم بتنزيل ملفات الامتداد Go Present code highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension highlights Golang code in slides like this https://talks.golang.org/2014/readability.slide#10
معلومات أساسية عن التمديد
الاسم | Go Present code highlighter |
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 } |