GitHub CSS Highlighter

Show web colors on GitHub files

GitHub CSS Highlighterคืออะไร?

GitHub CSS Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matt King และคุณลักษณะหลักของมันคือ "Show web colors on GitHub files"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub CSS Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย GitHub CSS Highlighter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        GitHub CSS Highlighter adds the web color to GitHub code pages in any language. Now you can stop trying to figure out which color that hex code goes with or what that new color somebody added in a pull request looks like.

Simply add the extension and start browsing code files: https://github.com/mrmrs/colors/blob/master/css/colors.css

*Bitbucket and GCP support coming soon*                    

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

ชื่อ GitHub CSS Highlighter GitHub CSS Highlighter
ID eodknooanbabbanekpbcgaldepnenoih
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-css-highlighter/eodknooanbabbanekpbcgaldepnenoih
คำอธิบาย Show web colors on GitHub files
ขนาดไฟล์ 16.4 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-08-06
วันที่เผยแพร่ 2017-08-06
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Matt King
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub CSS Highlighter",
    "description": "Show web colors on GitHub files",
    "author": "Matthew King",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ]
}