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                    

擴展基本資訊

名稱 dotcss dotcss
ID caiddafokabnlidjidpgffgiilfemcli
官方網址 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"
    ]
}