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
擴展基本資訊
名稱 | Glip Code Parse Decorator |
ID | oihccmhenifggdkdfbjphbcnghlcgagl |
官方網址 | 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" ] } } |