dotcss
~/.css
Cos'è dotcss?
dotcss è un'estensione di Chrome sviluppata da Andrew Stewart, e la sua funzione principale è "~/.css".
Scarica il file CRX dell'estensione dotcss
Scarica i file di estensione dotcss in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | caiddafokabnlidjidpgffgiilfemcli |
URL Ufficiale | https://chrome.google.com/webstore/detail/dotcss/caiddafokabnlidjidpgffgiilfemcli |
Descrizione | ~/.css |
Dimensione del File | 11.07 KB |
Conteggio Installazioni | 21 |
Versione Corrente | 2.2.0 |
Ultimo Aggiornamento | 2014-03-08 |
Data di Pubblicazione | 2014-03-08 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Andrew Stewart |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/stewart/dotcss |
URL della Pagina di Aiuto | https://github.com/stewart/dotcss |
Lingue Supportate | 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" ] } |