dotcss
~/.css
Τι είναι το dotcss;
Το dotcss είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andrew Stewart, και η κύρια λειτουργία του είναι "~/.css".
Λήψη αρχείου CRX της επέκτασης dotcss
Λήψη αρχείων επέκτασης dotcss σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | caiddafokabnlidjidpgffgiilfemcli |
Επίσημο URL | https://chrome.google.com/webstore/detail/dotcss/caiddafokabnlidjidpgffgiilfemcli |
Περιγραφή | ~/.css |
Μέγεθος Αρχείου | 11.07 KB |
Αριθμός Εγκαταστάσεων | 21 |
Τρέχουσα Έκδοση | 2.2.0 |
Τελευταία Ενημέρωση | 2014-03-08 |
Ημερομηνία Δημοσίευσης | 2014-03-08 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Andrew Stewart |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/stewart/dotcss |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/stewart/dotcss |
Υποστηριζόμενες Γλώσσες | 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" ] } |