dotcss
~/.css
Co je dotcss?
dotcss je rozšíření Chrome vyvinuté Andrew Stewart, a jeho hlavní funkcí je „~/.css“.
Stáhnout soubor CRX rozšíření dotcss
Stáhněte si soubory rozšíření dotcss ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | caiddafokabnlidjidpgffgiilfemcli |
Oficiální URL | https://chrome.google.com/webstore/detail/dotcss/caiddafokabnlidjidpgffgiilfemcli |
Popis | ~/.css |
Velikost souboru | 11.07 KB |
Počet instalací | 21 |
Aktuální Verze | 2.2.0 |
Poslední Aktualizace | 2014-03-08 |
Datum Vydání | 2014-03-08 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Andrew Stewart |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/stewart/dotcss |
URL Stránky Nápovědy | https://github.com/stewart/dotcss |
Podporované Jazyky | 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" ] } |