Syntaxit

Syntax Colorize

Syntaxit क्या है?

Syntaxit Sandip Chitale द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Syntax Colorize"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Syntaxit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

 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
}