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ファイルをダウンロード
Glip Code Parse Decorator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        Update for emoji support                     拡張機能の基本情報
| 名前 |   |  
| 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 | 
| Eメール | [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"
        ]
    }
}  |  |