Chatwork Code Highlighter

This extension highlight code tag in your Chatwork timeline.

Wat is Chatwork Code Highlighter?

Chatwork Code Highlighter is een Chrome-extensie ontwikkeld door Shun Kushigami, en de belangrijkste functie is "This extension highlight code tag in your Chatwork timeline.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Chatwork Code Highlighter

Download Chatwork Code Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Code Highlighting for Chatwork code tag by using highlightjs. (https://highlightjs.org/) You can choose the theme and what languages to highlight.                    

Basisinformatie over de Extensie

Naam Chatwork Code Highlighter Chatwork Code Highlighter
ID aiekchlflneajdnogannnkbmlpmkceff
Officiële URL https://chromewebstore.google.com/detail/chatwork-code-highlighter/aiekchlflneajdnogannnkbmlpmkceff
Beschrijving This extension highlight code tag in your Chatwork timeline.
Bestandsgrootte 458 KB
Aantal Installaties 12
Huidige Versie 1.0
Laatst Bijgewerkt 2016-08-23
Publicatiedatum 2016-08-23
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Shun Kushigami
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}