Syntaxtic!

Performs syntax highlighting on files visited in the browser based on their extension

Syntaxtic!란 무엇입니까?

Syntaxtic!은(는) andrew.j.matheny에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Performs syntax highlighting on files visited in the browser based on their extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Syntaxtic! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Syntaxtic! is a chrome extension for syntax highlighting on source files opened in Chrome.  This extension was primarily designed for viewing files hosted in a web accessible version control system that doesn't natively provide highlighting but the usage certainly doesn't end there.

A variety of color themes and default sizes can now be selected from the extension options page.

Supported Languages:
    Actionscript    (.as .actionscript)
    Bash              (.sh)
    C++               (.cpp .h .cc)
    C#                 (.cs)
    C                   (.c .h)
    Clojure           (.clj)
    CSS               (.css)
    Diff                 (.diff .patch)
    Erlang            (.erl)
    Groovy            (.groovy)
    Go                  (.go)
    JavaScript       (.js)
    Java               (.java)
    JavaFX           (.fx)
    Latex             (.tex)
    Objective-C    (.m, .h)
    Perl                (.pl .perl .pm)
    PlainText        (.txt)
    PowerShell     (.ps1 .ps2)
    Python           (.py)
    Ruby              (.rb)
    Scala             (.scala)
    Swift              (.swift)
    Sql                (.sql, .pls)
    Typescript   (.ts)
    VisualBasic    (.vb)

Experimental Support:
    Bibtex            (.bib .bibtex)
    Common Lisp (.lisp .emacs)
    CSV pretty printing

Any file ending in one of the above extensions will be automatically highlighted using the appropriate grammar.

Any comments or suggestions can be directed to http://twitter.com/matheeeny or submitted as issues to https://github.com/matheeeny/Syntaxtic.

This extension would not be possible without Alex Gorbatchev's fantastic syntax highlighting API available at http://alexgorbatchev.com/SyntaxHighlighter/


UPDATES:

v1.1.25
- Added check for content-type = text/html.  If found, does not perform syntax highlighting

v1.1.28
- Added .cc as a c++ alias and .pm as a perl alias per request

v1.1.33
- Fixed actionscript as c# issue
- Fixed .cc aliasing

v2.0.43
- Added options page with selectable theme and size

v2.0.44
- Removed unused permissions

v3.0.74
- Added action button to disable line numbers or highlighting for the current page
- Updated to current version of extension manifest
- Small bug fixes
- Removed XML highlighting to let the default webkit viewer do it's thing

v3.0.117
- Added support for Go and CoffeeScript

v4.0.135
- Updated to latest version of syntax highlighting library which should fix many language highlighting issues
- Added support for typescript
- Added support for swift
- Removed CoffeeScript support due to complications with core library update                    

확장 프로그램 기본 정보

이름 Syntaxtic! Syntaxtic!
ID cgjalgdhmbpaacnnejmodfinclbdgaci
공식 URL https://chromewebstore.google.com/detail/syntaxtic/cgjalgdhmbpaacnnejmodfinclbdgaci
설명 Performs syntax highlighting on files visited in the browser based on their extension
파일 크기 106 KB
설치 횟수 8,555
현재 버전 4.0.142
최근 업데이트 2019-12-28
출시 날짜 2019-12-26
평점 4.07/5 총 199 개의 평점
개발자 andrew.j.matheny
결제 유형 free
확장 프로그램 웹 사이트 http://github.com/ajmath/Syntaxtic
도움말 페이지 URL http://twitter.com/matheeeny
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/tex.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.tex",
                "*:\/\/*\/*.tex?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/objc.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.m",
                "*:\/\/*\/*.m?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/csv.js",
                "scripts\/CsvToArray.js",
                "scripts\/sprintf-0.7-beta1.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.csv",
                "*:\/\/*\/*.csv?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/bibtex.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.bibtex",
                "*:\/\/*\/*.bibtex?*",
                "*:\/\/*\/*.bib",
                "*:\/\/*\/*.bib?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/clisp.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.lisp",
                "*:\/\/*\/*.lisp?*",
                "*:\/\/*\/*.emacs",
                "*:\/\/*\/*.emacs?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/clojure.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.clj?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/vb.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.vb",
                "*:\/\/*\/*.vb?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/sql.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.sql",
                "*:\/\/*\/*.sql?*",
                "*:\/\/*\/*.pls",
                "*:\/\/*\/*.pls?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/scala.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.scala",
                "*:\/\/*\/*.scala?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/rb.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.rb",
                "*:\/\/*\/*.rb?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/ps.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.ps1",
                "*:\/\/*\/*.ps1?*",
                "*:\/\/*\/*.ps2",
                "*:\/\/*\/*.ps2?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/plain.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.txt",
                "*:\/\/*\/*.txt?*",
                "*:\/\/*\/*.log",
                "*:\/\/*\/*.log?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/perl.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.pl",
                "*:\/\/*\/*.pm",
                "*:\/\/*\/*.perl",
                "*:\/\/*\/*.plx"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/php.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.php",
                "*:\/\/*\/*.php?*",
                "*:\/\/*\/*.php5",
                "*:\/\/*\/*.php4",
                "*:\/\/*\/*.php3",
                "*:\/\/*\/*.phps",
                "*:\/\/*\/*.phps",
                "*:\/\/*\/*.phtml"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/javafx.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.fx",
                "*:\/\/*\/*.fx?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/java.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.java",
                "*:\/\/*\/*.java?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/js.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.js",
                "*:\/\/*\/*.js?*",
                "*:\/\/*\/*.json",
                "*:\/\/*\/*.json?*",
                "*:\/\/*\/*.pbxproj",
                "*:\/\/*\/*.pbxproj?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/groovy.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.groovy",
                "*:\/\/*\/*.groovy?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/erl.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.erl",
                "*:\/\/*\/*.erl?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/diff.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.diff",
                "*:\/\/*\/*.diff?*",
                "*:\/\/*\/*.patch",
                "*:\/\/*\/*.patch?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/css.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.css",
                "*:\/\/*\/*.css?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/less.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.less",
                "*:\/\/*\/*.less?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/sass.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.scss",
                "*:\/\/*\/*.scss?*",
                "*:\/\/*\/*.sass",
                "*:\/\/*\/*.sass?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/cpp.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.cpp",
                "*:\/\/*\/*.cpp?*",
                "*:\/\/*\/*.cc",
                "*:\/\/*\/*.cc?*",
                "*:\/\/*\/*.c",
                "*:\/\/*\/*.c?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/cHeader.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.h",
                "*:\/\/*\/*.h?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/sh.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.sh",
                "*:\/\/*\/*.sh?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/as3.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.as",
                "*:\/\/*\/*.as?*",
                "*:\/\/*\/*.actionscript",
                "*:\/\/*\/*.actionscript?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/cs.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.cs",
                "*:\/\/*\/*.cs?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/go.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.go",
                "*:\/\/*\/*.go?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/py.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.py",
                "*:\/\/*\/*.py?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/f.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.f",
                "*:\/\/*\/*.f90",
                "*:\/\/*\/*.f?*",
                "*:\/\/*\/*.f90?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/typescript.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.ts",
                "*:\/\/*\/*.ts?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scripts\/syntaxhighlighter.js",
                "langs\/swift.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*.swift",
                "*:\/\/*\/*.swift?*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Performs syntax highlighting on files visited in the browser based on their extension",
    "icons": {
        "48": "syntaxtic_48x48.png",
        "128": "syntaxtic_128x128.png"
    },
    "name": "Syntaxtic!",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "version": "4.0.142",
    "manifest_version": 2,
    "web_accessible_resources": [
        "styles\/*",
        "scripts\/*",
        "toggle_*"
    ],
    "page_action": {
        "default_icon": "syntaxtic_48x48.png",
        "default_title": "Toggle",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "ftp:\/\/*\/*"
    ]
}