Syntax Highlighter

This extension enables syntax highlighting for every pre element on any page

Cos'è Syntax Highlighter?

Syntax Highlighter è un'estensione di Chrome sviluppata da martinhodler, e la sua funzione principale è "This extension enables syntax highlighting for every pre element on any page".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Syntax Highlighter

Scarica i file di estensione Syntax Highlighter 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

 Syntax Highlighter lets you highlight any 
 tag on any website. To highlight these it uses highlightjs  and its themes.                    

Informazioni di Base sull'Estensione

Nome Syntax Highlighter Syntax Highlighter
ID glelbammondmpalmahoabfpchnoonnpk
URL Ufficiale https://chrome.google.com/webstore/detail/syntax-highlighter/glelbammondmpalmahoabfpchnoonnpk
Descrizione This extension enables syntax highlighting for every pre element on any page
Dimensione del File 59.13 KB
Conteggio Installazioni 819
Versione Corrente 1.0.2
Ultimo Aggiornamento 2016-10-14
Data di Pubblicazione 2016-10-14
Valutazione 3.86/5 Totale 7 Valutazioni
Sviluppatore martinhodler
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Syntax Highlighter",
    "description": "This extension enables syntax highlighting for every pre element on any page",
    "version": "1.0.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/highlight.pack.js",
                "content\/content.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background\/highlighter.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    }
}