Reload CSS
A developer tool that adds a button to reload only css stylesheets.
Что такое Reload CSS?
Reload CSS - это расширение Chrome, разработанное https://richard.parnaby-king.co.uk, и его основная функция - "A developer tool that adds a button to reload only css stylesheets.".
Снимки экрана расширения
Скачать файл CRX расширения Reload CSS
Скачайте файлы расширений Reload CSS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A developer tool that adds a button to reload only css stylesheets. It does this by appending a timestamp to the css file path, e.g. `/path/to/file.css` into `/path/to/file.css?7123654789`
Основная информация о расширении
Название | Reload CSS |
ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
Официальный URL | https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef |
Описание | A developer tool that adds a button to reload only css stylesheets. |
Размер файла | 106 KB |
Количество установок | 97 |
Текущая Версия | 1 |
Последнее Обновление | 2016-03-10 |
Дата публикации | 2016-03-10 |
Рейтинг | 4.00/5 Всего 1 оценок |
Разработчик | https://richard.parnaby-king.co.uk |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/richard-parnaby-king/Reload-CSS |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reload CSS", "short_name": "Reload CSS", "description": "A developer tool that adds a button to reload only css stylesheets.", "version": "1", "author": "Richard Parnaby-King", "homepage_url": "https:\/\/github.com\/richard-parnaby-king\/Reload-CSS", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |