Syntaxit

Syntax Colorize

Was ist Syntaxit?

Syntaxit ist eine Chrome-Erweiterung, die von Sandip Chitale entwickelt wurde, und ihr Hauptmerkmal ist "Syntax Colorize".

Erweiterungsscreenshots

screenshot

Syntaxit-Erweiterungs-CRX-Datei herunterladen

Laden Sie Syntaxit-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

 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.                    

Grundlegende Informationen zur Erweiterung

Name Syntaxit Syntaxit
ID fdgpepgfapimghgbdmdbnlffmmioegbo
Offizielle URL https://chrome.google.com/webstore/detail/syntaxit/fdgpepgfapimghgbdmdbnlffmmioegbo
Beschreibung Syntax Colorize
Dateigröße 41.84 KB
Installationsanzahl 17
Aktuelle Version 1.0.0
Letztes Update 2014-03-29
Veröffentlichungsdatum 2014-03-29
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler Sandip Chitale
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://sandipchitale.blogspot.com/2014/03/chrome-extension-syntaxit.html
Hilfeseite URL https://github.com/sandipchitale/syntaxit/issues
Unterstützte Sprachen 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
}