Glip Code Parse Decorator

This extension can automatically format code snippets in Glip conversation

Glip Code Parse Decoratorคืออะไร?

Glip Code Parse Decorator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ed.zhang1988 และคุณลักษณะหลักของมันคือ "This extension can automatically format code snippets in Glip conversation"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Glip Code Parse Decorator

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

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

                        Update for emoji support                    

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

ชื่อ Glip Code Parse Decorator Glip Code Parse Decorator
ID oihccmhenifggdkdfbjphbcnghlcgagl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/glip-code-parse-decorator/oihccmhenifggdkdfbjphbcnghlcgagl
คำอธิบาย This extension can automatically format code snippets in Glip conversation
ขนาดไฟล์ 245 KB
จำนวนการติดตั้ง 12
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2016-07-25
วันที่เผยแพร่ 2016-07-25
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา ed.zhang1988
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Glip Code Parse Decorator",
    "description": "This extension can automatically format code snippets in Glip conversation",
    "version": "1.0.4",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*.glip.com\/",
        "https:\/\/glip.com\/",
        "http:\/\/hilite.me\/*"
    ],
    "browser_action": {
        "default_icon": "GCPD\/GCPD_24x24.png"
    },
    "icons": {
        "16": "GCPD\/GCPD_16x16.png",
        "24": "GCPD\/GCPD_24x24.png",
        "32": "GCPD\/GCPD_32x32.png",
        "64": "GCPD\/GCPD_64x64.png",
        "128": "GCPD\/GCPD_128x128.png"
    },
    "options_ui": {
        "page": "views\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "fit.css"
            ],
            "js": [
                "js\/jquery.min.js",
                "app.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/supported_theme.js",
            "background.js"
        ]
    }
}