dotcss
~/.css
Hvad er dotcss?
dotcss er en Chrome-udvidelse udviklet af Andrew Stewart, og dens hovedfunktion er "~/.css".
Download dotcss-udvidelses-CRX-fil
Download dotcss-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | caiddafokabnlidjidpgffgiilfemcli |
Officiel URL | https://chrome.google.com/webstore/detail/dotcss/caiddafokabnlidjidpgffgiilfemcli |
Beskrivelse | ~/.css |
Filstørrelse | 11.07 KB |
Antal Installationer | 21 |
Nuværende Version | 2.2.0 |
Senest Opdateret | 2014-03-08 |
Udgivelsesdato | 2014-03-08 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | Andrew Stewart |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/stewart/dotcss |
Hjælpeside-URL | https://github.com/stewart/dotcss |
Understøttede Sprog | 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" ] } |