Chatwork Code Highlighter
This extension highlight code tag in your Chatwork timeline.
What is Chatwork Code Highlighter?
Chatwork Code Highlighter is a Chrome extension developed by Shun Kushigami, and its main feature is "This extension highlight code tag in your Chatwork timeline.".
Extension Screenshots
Download Chatwork Code Highlighter Extension CRX File
Download Chatwork Code Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Code Highlighting for Chatwork code tag by using highlightjs. (https://highlightjs.org/) You can choose the theme and what languages to highlight.
Extension Basic Information
Name | Chatwork Code Highlighter |
ID | aiekchlflneajdnogannnkbmlpmkceff |
Official URL | https://chromewebstore.google.com/detail/chatwork-code-highlighter/aiekchlflneajdnogannnkbmlpmkceff |
Description | This extension highlight code tag in your Chatwork timeline. |
File Size | 458 KB |
Installation Count | 12 |
Current Version | 1.0 |
Last Updated | 2016-08-23 |
Publish Date | 2016-08-23 |
Rating | 1.00/5 Total 1 Ratings |
Developer | Shun Kushigami |
Payment Type | free |
Supported Languages | 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\/*" ] } |