J CSS Reload

Simple CSS Reload utility

Что такое J CSS Reload?

J CSS Reload - это расширение Chrome, разработанное jslayer, и его основная функция - "Simple CSS Reload utility".

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

screenshot

Скачать файл CRX расширения J CSS Reload

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

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

                        Refresh your css files without realoding the page. Just simply click nice green refresh button or use shortcut.

Source: https://github.com/jslayer/css-reload

New in 1.2.5:

added: icon blinking on activate
added: command support (activate in "Keyboard shortcuts" at the bottom of chrome://extensions/ page).

New in 1.2.3:

added: fonts.googleapis.com into ignored list

New in 1.2:

Add experimental `@import url(...` support.

New in 1.1:

Several public CDN hosts are now ignored while refreshing:

 - yui.yahooapis.com
 - ajax.googleapis.com
 - ajax.aspnetcdn.com
 - ajax.microsoft.com
 - code.jquery.com                    

Основная информация о расширении

Название J CSS Reload J CSS Reload
ID nnmebjmgdonemncjdliomljdfhpnlekk
Официальный URL https://chromewebstore.google.com/detail/j-css-reload/nnmebjmgdonemncjdliomljdfhpnlekk
Описание Simple CSS Reload utility
Размер файла 15.8 KB
Количество установок 4,214
Текущая Версия 1.2.5
Последнее Обновление 2013-11-25
Дата публикации 2013-11-25
Рейтинг 4.50/5 Всего 52 оценок
Разработчик jslayer
Тип оплаты free
Официальный сайт расширения https://github.com/jslayer/css-reload
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.2.5",
    "manifest_version": 2,
    "default_locale": "en",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "page_action": {
        "default_title": "__MSG_pageActionTitle__",
        "default_icon": "icon-48.png"
    },
    "icons": {
        "19": "icon-48.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            },
            "description": "CSS Reload"
        }
    }
}