Glip Code Parse Decorator

This extension can automatically format code snippets in Glip conversation

Glip Code Parse Decorator là gì?

Glip Code Parse Decorator là một tiện ích mở rộng Chrome được phát triển bởi ed.zhang1988, và tính năng chính của nó là "This extension can automatically format code snippets in Glip conversation".

Tải xuống tệp CRX của tiện ích mở rộng Glip Code Parse Decorator

Tải xuống các tệp mở rộng Glip Code Parse Decorator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Update for emoji support                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Glip Code Parse Decorator Glip Code Parse Decorator
ID oihccmhenifggdkdfbjphbcnghlcgagl
URL Chính Thức https://chromewebstore.google.com/detail/glip-code-parse-decorator/oihccmhenifggdkdfbjphbcnghlcgagl
Mô tả This extension can automatically format code snippets in Glip conversation
Kích Thước Tệp 245 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2016-07-25
Ngày Phát Hành 2016-07-25
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ed.zhang1988
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}