Save CSS

Save your CSS and JS modifications in Devtools automatically to local disk.

Что такое Save CSS?

Save CSS - это расширение Chrome, разработанное Tomi Mickelsson, и его основная функция - "Save your CSS and JS modifications in Devtools automatically to local disk.".

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

screenshot

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

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

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

                        Save CSS is a Chrome extension that speeds up your web UI development workflow
by automatically saving your CSS and Javascript modifications in Chrome
Developer Tools into the local disk. Eliminate manual copying and pasting of
CSS values from Developer Tools to source files and install this extension.

This extension requires an external script that is written in Python or Ruby. Pick one of them:

Get the python script from: https://raw.github.com/tomimick/chrome-ext-save-css/master/servers/server.py

Alternatively, get the Ruby script from: https://raw.github.com/tomimick/chrome-ext-save-css/master/servers/server.rb

See usage and technical information in author's blog in http://tomicloud.com/2012/04/save-css-chrome-ext                    

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

Название Save CSS Save CSS
ID mflkegihknjnhmpfnaimpfkjbkelhhkf
Официальный URL https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf
Описание Save your CSS and JS modifications in Devtools automatically to local disk.
Размер файла 23.44 KB
Количество установок 2,667
Текущая Версия 1.0.3
Последнее Обновление 2012-08-23
Дата публикации 2012-08-23
Рейтинг 3.86/5 Всего 29 оценок
Разработчик Tomi Mickelsson
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://tomicloud.com
URL страницы помощи http://tomicloud.com/2012/04/save-css-chrome-ext
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save CSS",
    "version": "1.0.3",
    "description": "Save your CSS and JS modifications in Devtools automatically to local disk.",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "minimum_chrome_version": "18"
}