Hard reload

Adds a hard reload button to chrome.

Hard reloadとは何ですか?

Hard reloadはSpuffynismによって開発されたChromeの拡張機能で、その主な機能は「Adds a hard reload button to chrome.」です。

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

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

拡張機能の使用方法

                        Hard reloads a page, bypassing/ignoring the cache.

To hard reload the active tab's content, either click the button in the taskbar or press Alt+R.

Source code can be found here: https://github.com/Spuffynism/hardreload                    

拡張機能の基本情報

名前 Hard reload Hard reload
ID bdmblpnglgiabhlbpkefgehelmlgodjd
公式URL https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd
説明 Adds a hard reload button to chrome.
ファイルサイズ 4.05 KB
インストール数 383
現在のバージョン 1.2
最終更新日 2018-05-26
公開日 2018-05-26
評価 4.40/5 合計 5 レビュー
開発者 Spuffynism
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Spuffynism/hardreload
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hard reload",
    "description": "Adds a hard reload button to chrome.",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "hard-reload": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Hard reloads"
        }
    },
    "permissions": [
        "activeTab",
        "browsingData"
    ],
    "browser_action": {
        "default_title": "Hard reload this page",
        "default_icon": "hard_reload.png"
    },
    "manifest_version": 2
}