Chatwork Code Highlighter
This extension highlight code tag in your Chatwork timeline.
Qu'est-ce que Chatwork Code Highlighter ?
Chatwork Code Highlighter est une extension Chrome développée par Shun Kushigami, et sa fonction principale est "This extension highlight code tag in your Chatwork timeline.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chatwork Code Highlighter
Téléchargez les fichiers d'extension Chatwork Code Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Code Highlighting for Chatwork code tag by using highlightjs. (https://highlightjs.org/) You can choose the theme and what languages to highlight.
Informations de Base sur l'Extension
Nom | Chatwork Code Highlighter |
ID | aiekchlflneajdnogannnkbmlpmkceff |
URL Officiel | https://chromewebstore.google.com/detail/chatwork-code-highlighter/aiekchlflneajdnogannnkbmlpmkceff |
Description | This extension highlight code tag in your Chatwork timeline. |
Taille du Fichier | 458 KB |
Nombre d'Installations | 12 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-08-23 |
Date de Publication | 2016-08-23 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | Shun Kushigami |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chatwork Code Highlighter", "description": "This extension highlight code tag in your Chatwork timeline.", "version": "1.0", "icons": { "16": "images\/icon\/icon_16.png", "48": "images\/icon\/icon_64.png", "128": "images\/icon\/icon_128.png" }, "background": { "scripts": [ "js\/data.js", "js\/jquery.js", "js\/background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "images\/icon\/icon_19.png", "38": "images\/icon\/icon_38.png" }, "default_title": "Chatwork Code Highlighter", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.chatwork.com\/*" ], "css": [ "css\/style.css", "css\/default.css" ], "js": [ "js\/jquery.js", "js\/highlight.js", "js\/data.js", "js\/content_script.js", "js\/main.js" ] } ], "permissions": [ "https:\/\/www.chatwork.com\/*" ] } |