dotcss
~/.css
What is dotcss?
dotcss is a Chrome extension developed by Andrew Stewart, and its main feature is "~/.css".
Download dotcss Extension CRX File
Download dotcss extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | caiddafokabnlidjidpgffgiilfemcli |
| Official URL | https://chrome.google.com/webstore/detail/dotcss/caiddafokabnlidjidpgffgiilfemcli |
| Description | ~/.css |
| File Size | 11.07 KB |
| Installation Count | 21 |
| Current Version | 2.2.0 |
| Last Updated | 2014-03-08 |
| Publish Date | 2014-03-08 |
| Rating | 5.00/5 Total 2 Ratings |
| Developer | Andrew Stewart |
| Payment Type | free |
| Extension Website | https://github.com/stewart/dotcss |
| Help Page URL | https://github.com/stewart/dotcss |
| Supported Languages | 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"
]
} | |