JSBeautify for Google Chrome™

When you view a JavaScript file, Clippy will ask you if you want to format it.

JSBeautify for Google Chrome™ क्या है?

JSBeautify for Google Chrome™ Thomas Rix द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When you view a JavaScript file, Clippy will ask you if you want to format it."।

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

screenshot
screenshot
screenshot

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

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

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

                        This extensions builds off of Einar Lielmanis's JSBeautifier project. If you view a JavaScript file in your browser, you will be given the option to format it. You can set specific formatting settings in the options page of the extension.

The source code for this extension is available on GitHub at https://github.com/rixth/jsbeautify-for-chrome

Logo by Clement Ng, http://clmnt.com                    

एक्सटेंशन की मूल जानकारी

नाम JSBeautify for Google Chrome™ JSBeautify for Google Chrome™
ID kkioiolcacgoihiiekambdciinadbpfk
आधिकारिक URL https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk
विवरण When you view a JavaScript file, Clippy will ask you if you want to format it.
फ़ाइल का आकार 37.22 KB
स्थापना संख्या 7,691
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2013-01-14
प्रकाशन तिथि 2013-01-13
रेटिंग 3.72/5 कुल 53 रेटिंग्स
डेवलपर Thomas Rix
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://rixth.org
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSBeautify for Google Chrome\u2122",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "When you view a JavaScript file, Clippy will ask you if you want to format it.",
    "icons": {
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "javascripts\/options_server.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*.js*",
                "https:\/\/*\/*.js*",
                "ftp:\/\/*\/*.js*",
                "file:\/\/*\/*.js*"
            ],
            "run_at": "document_end",
            "css": [
                "stylesheets\/application.css"
            ],
            "js": [
                "javascripts\/application.js"
            ]
        }
    ],
    "options_page": "html\/options_page.html",
    "web_accessible_resources": [
        "assets\/its-clippy-motherfuckers.png"
    ]
}