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
电子邮箱 [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
}