TinkerCSS

An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.

Что такое TinkerCSS?

TinkerCSS - это расширение Chrome, разработанное Jan Baykara, и его основная функция - "An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.".

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

screenshot

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

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

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

                        TinkerCSS appends a CSS style tag to the end of a HTML document , that you can then live modify via the extension's editor Inspector panel, and see the results in real-time.

The CSS you write is saved with reference to the page URL, so if you open the same page again and load the panel, your previously written snippet will load up.                    

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

Название TinkerCSS TinkerCSS
ID flbdabolfkgfmcnlheopgencfhjcllbp
Официальный URL https://chrome.google.com/webstore/detail/tinkercss/flbdabolfkgfmcnlheopgencfhjcllbp
Описание An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.
Размер файла 682 KB
Количество установок 154
Текущая Версия 1.2.2
Последнее Обновление 2015-07-09
Дата публикации 2015-07-09
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Jan Baykara
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/janbaykara/TinkerCSS
URL страницы помощи https://github.com/janbaykara/TinkerCSS/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TinkerCSS",
    "description": "An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.",
    "manifest_version": 2,
    "version": "1.2.2",
    "icons": {
        "128": "img\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "deps\/jquery.js",
                "lib\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "lib\/background.js"
        ]
    },
    "devtools_page": "lib\/devtools\/devtools.html"
}