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™ - это расширение Chrome, разработанное Thomas Rix, и его основная функция - "When you view a JavaScript file, Clippy will ask you if you want to format it.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения JSBeautify for Google Chrome™

Скачайте файлы расширений JSBeautify for Google Chrome™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}