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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Go Present code highlighter

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Go Present code highlighter 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
}