dotcss

~/.css

dotcss क्या है?

dotcss Andrew Stewart द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "~/.css"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में dotcss एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक 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"
    ]
}