Syntaxit

Syntax Colorize

Cos'è Syntaxit?

Syntaxit è un'estensione di Chrome sviluppata da Sandip Chitale, e la sua funzione principale è "Syntax Colorize".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Syntaxit

Scarica i file di estensione Syntaxit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

 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.                    

Informazioni di Base sull'Estensione

Nome Syntaxit Syntaxit
ID fdgpepgfapimghgbdmdbnlffmmioegbo
URL Ufficiale https://chrome.google.com/webstore/detail/syntaxit/fdgpepgfapimghgbdmdbnlffmmioegbo
Descrizione Syntax Colorize
Dimensione del File 41.84 KB
Conteggio Installazioni 17
Versione Corrente 1.0.0
Ultimo Aggiornamento 2014-03-29
Data di Pubblicazione 2014-03-29
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Sandip Chitale
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://sandipchitale.blogspot.com/2014/03/chrome-extension-syntaxit.html
URL della Pagina di Aiuto https://github.com/sandipchitale/syntaxit/issues
Lingue Supportate 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
}