dotcss
~/.css
Wat is dotcss?
dotcss is een Chrome-extensie ontwikkeld door Andrew Stewart, en de belangrijkste functie is "~/.css".
Download het CRX-bestand van de extensie dotcss
Download dotcss-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | caiddafokabnlidjidpgffgiilfemcli |
Officiële URL | https://chrome.google.com/webstore/detail/dotcss/caiddafokabnlidjidpgffgiilfemcli |
Beschrijving | ~/.css |
Bestandsgrootte | 11.07 KB |
Aantal Installaties | 21 |
Huidige Versie | 2.2.0 |
Laatst Bijgewerkt | 2014-03-08 |
Publicatiedatum | 2014-03-08 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Andrew Stewart |
Betalingswijze | free |
Extensiewebsite | https://github.com/stewart/dotcss |
Help Pagina-URL | https://github.com/stewart/dotcss |
Ondersteunde Talen | 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" ] } |