Syntaxit

Syntax Colorize

Qu'est-ce que Syntaxit ?

Syntaxit est une extension Chrome développée par Sandip Chitale, et sa fonction principale est "Syntax Colorize".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Syntaxit

Téléchargez les fichiers d'extension Syntaxit 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

 Visit any page that has JavaScript code in a pre tag which has not been been syntax colored yet by some other plugin and then click on the Syntaxit icon in the toolbar. You will see that all the 
 tags will be updated to show syntax colored code with line numbers.                    

Informations de Base sur l'Extension

Nom Syntaxit Syntaxit
ID fdgpepgfapimghgbdmdbnlffmmioegbo
URL Officiel https://chrome.google.com/webstore/detail/syntaxit/fdgpepgfapimghgbdmdbnlffmmioegbo
Description Syntax Colorize
Taille du Fichier 41.84 KB
Nombre d'Installations 17
Version Actuelle 1.0.0
Dernière Mise à Jour 2014-03-29
Date de Publication 2014-03-29
Évaluation 4.00/5 Total 1 Évaluations
Développeur Sandip Chitale
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://sandipchitale.blogspot.com/2014/03/chrome-extension-syntaxit.html
URL de la Page d'Aide https://github.com/sandipchitale/syntaxit/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Syntaxit",
    "version": "1.0.0",
    "description": "Syntax Colorize",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "icons\/syntaxit-16.png",
        "48": "icons\/syntaxit-48.png",
        "128": "icons\/syntaxit-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/syntaxit-19.png"
        },
        "default_title": "Syntaxit"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "prism.js",
                "syntaxit.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "style\/prism.css"
    ],
    "manifest_version": 2
}