Syntaxit

Syntax Colorize

Syntaxit là gì?

Syntaxit là một tiện ích mở rộng Chrome được phát triển bởi Sandip Chitale, và tính năng chính của nó là "Syntax Colorize".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Syntaxit

Tải xuống các tệp mở rộng Syntaxit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Syntaxit Syntaxit
ID fdgpepgfapimghgbdmdbnlffmmioegbo
URL Chính Thức https://chrome.google.com/webstore/detail/syntaxit/fdgpepgfapimghgbdmdbnlffmmioegbo
Mô tả Syntax Colorize
Kích Thước Tệp 41.84 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2014-03-29
Ngày Phát Hành 2014-03-29
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Sandip Chitale
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://sandipchitale.blogspot.com/2014/03/chrome-extension-syntaxit.html
URL Trang Trợ Giúp https://github.com/sandipchitale/syntaxit/issues
Ngôn Ngữ Được Hỗ Trợ 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
}