Syntaxit

Syntax Colorize

Syntaxitとは何ですか?

SyntaxitはSandip Chitaleによって開発されたChromeの拡張機能で、その主な機能は「Syntax Colorize」です。

拡張機能のスクリーンショット

screenshot

Syntaxit拡張機能のCRXファイルをダウンロード

Syntaxit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

 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.                    

拡張機能の基本情報

名前 Syntaxit Syntaxit
ID fdgpepgfapimghgbdmdbnlffmmioegbo
公式URL https://chrome.google.com/webstore/detail/syntaxit/fdgpepgfapimghgbdmdbnlffmmioegbo
説明 Syntax Colorize
ファイルサイズ 41.84 KB
インストール数 17
現在のバージョン 1.0.0
最終更新日 2014-03-29
公開日 2014-03-29
評価 4.00/5 合計 1 レビュー
開発者 Sandip Chitale
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://sandipchitale.blogspot.com/2014/03/chrome-extension-syntaxit.html
ヘルプページのURL https://github.com/sandipchitale/syntaxit/issues
対応言語 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
}