JSBeautify for Google Chrome™

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

Vad är JSBeautify for Google Chrome™?

JSBeautify for Google Chrome™ är en Chrome-tillägg utvecklad av Thomas Rix, och dess huvudfunktion är "When you view a JavaScript file, Clippy will ask you if you want to format it.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner JSBeautify for Google Chrome™-förlängningens CRX-fil

Ladda ner JSBeautify for Google Chrome™-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn JSBeautify for Google Chrome™ JSBeautify for Google Chrome™
ID kkioiolcacgoihiiekambdciinadbpfk
Officiell webbadress https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk
Beskrivning When you view a JavaScript file, Clippy will ask you if you want to format it.
Filstorlek 37.22 KB
Antal Installationer 7,691
Aktuell Version 1.0.2
Senast Uppdaterad 2013-01-14
Publiceringsdatum 2013-01-13
Betyg 3.72/5 Totalt 53 Betyg
Utvecklare Thomas Rix
Betalningssätt free
Tilläggswebbplats http://rixth.org
Stödda Språk 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"
    ]
}