Glip Code Parse Decorator
This extension can automatically format code snippets in Glip conversation
Что такое Glip Code Parse Decorator?
Glip Code Parse Decorator - это расширение Chrome, разработанное ed.zhang1988, и его основная функция - "This extension can automatically format code snippets in Glip conversation".
Скачать файл CRX расширения Glip Code Parse Decorator
Скачайте файлы расширений Glip Code Parse Decorator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Update for emoji support
Основная информация о расширении
Название | 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" ] } } |