JSBeautify for Google Chrome™

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

Wat is JSBeautify for Google Chrome™?

JSBeautify for Google Chrome™ is een Chrome-extensie ontwikkeld door Thomas Rix, en de belangrijkste functie is "When you view a JavaScript file, Clippy will ask you if you want to format it.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie JSBeautify for Google Chrome™

Download JSBeautify for Google Chrome™-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam JSBeautify for Google Chrome™ JSBeautify for Google Chrome™
ID kkioiolcacgoihiiekambdciinadbpfk
Officiële URL https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk
Beschrijving When you view a JavaScript file, Clippy will ask you if you want to format it.
Bestandsgrootte 37.22 KB
Aantal Installaties 7,691
Huidige Versie 1.0.2
Laatst Bijgewerkt 2013-01-14
Publicatiedatum 2013-01-13
Beoordeling 3.72/5 Totaal 53 Beoordelingen
Ontwikkelaar Thomas Rix
Betalingswijze free
Extensiewebsite http://rixth.org
Ondersteunde Talen 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"
    ]
}