dotcss
~/.css
Что такое dotcss?
dotcss - это расширение Chrome, разработанное Andrew Stewart, и его основная функция - "~/.css".
Скачать файл CRX расширения dotcss
Скачайте файлы расширений dotcss в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
dotcss is two things: 1. A tiny web server that runs on your machine, serving CSS files out of ~/.css 2. A Chrome extension that fetches these CSS files and injects them based on their filename. This one is the Chrome extension. The files are requested on a per-page basics, based on the hostname. For example, if you go to https://github.com, ~/.css/github.com.css would be injected into the page. This makes it super simple and easy to change and improve the look of your favorite sites. You can get the server component of dotcss at https://github.com/stewart/dotcss
Основная информация о расширении
Название | |
ID | caiddafokabnlidjidpgffgiilfemcli |
Официальный URL | https://chrome.google.com/webstore/detail/dotcss/caiddafokabnlidjidpgffgiilfemcli |
Описание | ~/.css |
Размер файла | 11.07 KB |
Количество установок | 21 |
Текущая Версия | 2.2.0 |
Последнее Обновление | 2014-03-08 |
Дата публикации | 2014-03-08 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Andrew Stewart |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/stewart/dotcss |
URL страницы помощи | https://github.com/stewart/dotcss |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "dotcss", "manifest_version": 2, "version": "2.2.0", "description": "~\/.css", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "all_frames": true, "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dotcss.js" ] } ], "permissions": [ "tabs" ] } |