Reload CSS

A developer tool that adds a button to reload only css stylesheets.

Reload CSSとは何ですか?

Reload CSSはhttps://richard.parnaby-king.co.ukによって開発されたChromeの拡張機能で、その主な機能は「A developer tool that adds a button to reload only css stylesheets.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Reload CSS拡張機能のCRXファイルをダウンロード

Reload CSS拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A developer tool that adds a button to reload only css stylesheets. It does this by appending a timestamp to the css file path, e.g. `/path/to/file.css` into `/path/to/file.css?7123654789`                    

拡張機能の基本情報

名前 Reload CSS Reload CSS
ID ojbbeapndipcgcjgmlelgbgmmalhjkef
公式URL https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef
説明 A developer tool that adds a button to reload only css stylesheets.
ファイルサイズ 106 KB
インストール数 97
現在のバージョン 1
最終更新日 2016-03-10
公開日 2016-03-10
評価 4.00/5 合計 1 レビュー
開発者 https://richard.parnaby-king.co.uk
支払い方法 free
拡張機能のウェブサイト https://github.com/richard-parnaby-king/Reload-CSS
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload CSS",
    "short_name": "Reload CSS",
    "description": "A developer tool that adds a button to reload only css stylesheets.",
    "version": "1",
    "author": "Richard Parnaby-King",
    "homepage_url": "https:\/\/github.com\/richard-parnaby-king\/Reload-CSS",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}