Glip Code Parse Decorator
This extension can automatically format code snippets in Glip conversation
Was ist Glip Code Parse Decorator?
Glip Code Parse Decorator ist eine Chrome-Erweiterung, die von ed.zhang1988 entwickelt wurde, und ihr Hauptmerkmal ist "This extension can automatically format code snippets in Glip conversation".
Glip Code Parse Decorator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Glip Code Parse Decorator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Update for emoji support
Grundlegende Informationen zur Erweiterung
Name | Glip Code Parse Decorator |
ID | oihccmhenifggdkdfbjphbcnghlcgagl |
Offizielle URL | https://chromewebstore.google.com/detail/glip-code-parse-decorator/oihccmhenifggdkdfbjphbcnghlcgagl |
Beschreibung | This extension can automatically format code snippets in Glip conversation |
Dateigröße | 245 KB |
Installationsanzahl | 12 |
Aktuelle Version | 1.0.4 |
Letztes Update | 2016-07-25 |
Veröffentlichungsdatum | 2016-07-25 |
Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
Entwickler | ed.zhang1988 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |