JSBeautify for Google Chrome™

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

Qu'est-ce que JSBeautify for Google Chrome™ ?

JSBeautify for Google Chrome™ est une extension Chrome développée par Thomas Rix, et sa fonction principale est "When you view a JavaScript file, Clippy will ask you if you want to format it.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension JSBeautify for Google Chrome™

Téléchargez les fichiers d'extension JSBeautify for Google Chrome™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom JSBeautify for Google Chrome™ JSBeautify for Google Chrome™
ID kkioiolcacgoihiiekambdciinadbpfk
URL Officiel https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk
Description When you view a JavaScript file, Clippy will ask you if you want to format it.
Taille du Fichier 37.22 KB
Nombre d'Installations 7,691
Version Actuelle 1.0.2
Dernière Mise à Jour 2013-01-14
Date de Publication 2013-01-13
Évaluation 3.72/5 Total 53 Évaluations
Développeur Thomas Rix
Type de Paiement free
Site Web de l'Extension http://rixth.org
Langues Prises en Charge 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"
    ]
}