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
电子邮箱 [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
}