Glip Code Parse Decorator

This extension can automatically format code snippets in Glip conversation

What is Glip Code Parse Decorator?

Glip Code Parse Decorator is a Chrome extension developed by ed.zhang1988, and its main feature is "This extension can automatically format code snippets in Glip conversation".

Download Glip Code Parse Decorator Extension CRX File

Download Glip Code Parse Decorator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Update for emoji support                    

Extension Basic Information

Name Glip Code Parse Decorator Glip Code Parse Decorator
ID oihccmhenifggdkdfbjphbcnghlcgagl
Official URL https://chromewebstore.google.com/detail/glip-code-parse-decorator/oihccmhenifggdkdfbjphbcnghlcgagl
Description This extension can automatically format code snippets in Glip conversation
File Size 245 KB
Installation Count 12
Current Version 1.0.4
Last Updated 2016-07-25
Publish Date 2016-07-25
Rating 3.50/5 Total 2 Ratings
Developer ed.zhang1988
Email [email protected]
Payment Type free
Supported Languages 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"
        ]
    }
}