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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } } |