dotcss
~/.css
dotcssとは何ですか?
dotcssはAndrew Stewartによって開発されたChromeの拡張機能で、その主な機能は「~/.css」です。
dotcss拡張機能のCRXファイルをダウンロード
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" ] } |