dotcss

~/.css

Was ist dotcss?

dotcss ist eine Chrome-Erweiterung, die von Andrew Stewart entwickelt wurde, und ihr Hauptmerkmal ist "~/.css".

dotcss-Erweiterungs-CRX-Datei herunterladen

Laden Sie dotcss-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name dotcss dotcss
ID caiddafokabnlidjidpgffgiilfemcli
Offizielle URL https://chrome.google.com/webstore/detail/dotcss/caiddafokabnlidjidpgffgiilfemcli
Beschreibung ~/.css
Dateigröße 11.07 KB
Installationsanzahl 21
Aktuelle Version 2.2.0
Letztes Update 2014-03-08
Veröffentlichungsdatum 2014-03-08
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Andrew Stewart
Zahlungsart free
Erweiterungswebsite https://github.com/stewart/dotcss
Hilfeseite URL https://github.com/stewart/dotcss
Unterstützte Sprachen 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"
    ]
}