GML Syntax Highlighter
GameMaker syntax highlighting, pretty-printing, and docs-linking courtesy of GMLsnip.com
GML Syntax Highlighter란 무엇입니까?
GML Syntax Highlighter은(는) https://www.gmlsnip.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GameMaker syntax highlighting, pretty-printing, and docs-linking courtesy of GMLsnip.com"입니다.
확장 프로그램 스크린샷
GML Syntax Highlighter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | GML Syntax Highlighter |
ID | ooagiaejlpeookdifcncgcdphmbhpfjn |
공식 URL | https://chromewebstore.google.com/detail/gml-syntax-highlighter/ooagiaejlpeookdifcncgcdphmbhpfjn |
설명 | GameMaker syntax highlighting, pretty-printing, and docs-linking courtesy of GMLsnip.com |
파일 크기 | 137 KB |
설치 횟수 | 75 |
현재 버전 | 0.9.6 |
최근 업데이트 | 2019-03-22 |
출시 날짜 | 2019-03-21 |
개발자 | https://www.gmlsnip.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.gmlsnip.com |
도움말 페이지 URL | https://www.zackbanack.com/contact |
지원되는 언어 | 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" } } |