Glip Code Parse Decorator
This extension can automatically format code snippets in Glip conversation
Apa itu Glip Code Parse Decorator?
Glip Code Parse Decorator adalah ekstensi Chrome yang dikembangkan oleh ed.zhang1988, dan fitur utamanya adalah "This extension can automatically format code snippets in Glip conversation".
Unduh Berkas CRX Ekstensi Glip Code Parse Decorator
Unduh file ekstensi Glip Code Parse Decorator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Update for emoji support
Informasi Dasar Ekstensi
Nama | Glip Code Parse Decorator |
ID | oihccmhenifggdkdfbjphbcnghlcgagl |
URL Resmi | https://chromewebstore.google.com/detail/glip-code-parse-decorator/oihccmhenifggdkdfbjphbcnghlcgagl |
Deskripsi | This extension can automatically format code snippets in Glip conversation |
Ukuran File | 245 KB |
Jumlah Instalasi | 12 |
Versi Saat Ini | 1.0.4 |
Terakhir Diperbarui | 2016-07-25 |
Tanggal Publikasi | 2016-07-25 |
Penilaian | 3.50/5 Total 2 Penilaian |
Pengembang | ed.zhang1988 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } } |