Glip Code Parse Decorator

This extension can automatically format code snippets in Glip conversation

Glip Code Parse Decorator란 무엇입니까?

Glip Code Parse Decorator은(는) ed.zhang1988에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension can automatically format code snippets in Glip conversation"입니다.

Glip Code Parse Decorator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}