GML Syntax Highlighter

GameMaker syntax highlighting, pretty-printing, and docs-linking courtesy of GMLsnip.com

Was ist GML Syntax Highlighter?

GML Syntax Highlighter ist eine Chrome-Erweiterung, die von https://www.gmlsnip.com entwickelt wurde, und ihr Hauptmerkmal ist "GameMaker syntax highlighting, pretty-printing, and docs-linking courtesy of GMLsnip.com".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

GML Syntax Highlighter-Erweiterungs-CRX-Datei herunterladen

Laden Sie GML Syntax Highlighter-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

                        See GameMaker Language code written in your browser just as you would in the Studio IDE. Transform dull GML code into pretty-printed, colorful code snippets across the web. Add a coat of fresh paint to the /r/gamemaker, the YoYo Games Forum, and the official GameMaker docs.

Features:
• Color-coded syntax near-identical to what you'll find in GameMaker Studio 2.x.
• Functions link to their respective YoYo Games documentation entries to help you learn GameMaker syntax
• See descriptions and parameters when you hover over a function
• One-click code copying to your clipboard
• A counter in the popup menu to show you how many pretty-printed code snippets you've seen
• Storage sync support for user settings

For additional features, visit https://www.GMLsnip.com                    

Grundlegende Informationen zur Erweiterung

Name GML Syntax Highlighter GML Syntax Highlighter
ID ooagiaejlpeookdifcncgcdphmbhpfjn
Offizielle URL https://chromewebstore.google.com/detail/gml-syntax-highlighter/ooagiaejlpeookdifcncgcdphmbhpfjn
Beschreibung GameMaker syntax highlighting, pretty-printing, and docs-linking courtesy of GMLsnip.com
Dateigröße 137 KB
Installationsanzahl 75
Aktuelle Version 0.9.6
Letztes Update 2019-03-22
Veröffentlichungsdatum 2019-03-21
Entwickler https://www.gmlsnip.com
Zahlungsart free
Erweiterungswebsite https://www.gmlsnip.com
Hilfeseite URL https://www.zackbanack.com/contact
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "GML",
    "name": "GML Syntax Highlighter",
    "version": "0.9.6",
    "description": "GameMaker syntax highlighting, pretty-printing, and docs-linking courtesy of GMLsnip.com",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "options.html"
    },
    "applications": {
        "gecko": {
            "id": "gmlsnip@zackbanack",
            "strict_min_version": "53.0"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/content.js",
                "js\/gml_snip.js",
                "js\/docs.js",
                "js\/gml_syntax.js"
            ],
            "matches": [
                "https:\/\/*.reddit.com\/r\/gamemaker\/*",
                "https:\/\/forum.yoyogames.com\/*",
                "https:\/\/docs2.yoyogames.com\/*",
                "https:\/\/docs.yoyogames.com\/*"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "64": "img\/icon64.png",
        "128": "img\/icon128.png"
    }
}