Syntaxit

Syntax Colorize

Syntaxitคืออะไร?

Syntaxit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sandip Chitale และคุณลักษณะหลักของมันคือ "Syntax Colorize"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Syntaxit

ดาวน์โหลดไฟล์ส่วนขยาย 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
}