Hard Refresh

Refresh current page bypassing the cache: clear cache + hard reload

什麼是Hard Refresh?

Hard Refresh是由https://openaddons.com開發的Chrome擴展程式,該擴展的主要功能是“Refresh current page bypassing the cache: clear cache + hard reload”。

擴展截圖

screenshot
screenshot

下載Hard Refresh擴展crx文件

下載Hard Refresh擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        DESCRIPTION:

This extension will simply add a "Hard Refresh" button to the toolbar. 

OPTIONS:

* Select what to be cleared before reload:
 -- Empty cache
 -- Delete cookies
 -- Clear file systems
 -- Clear indexed data
 -- Clear local storage data
 -- Clear plugin data
 -- Clear service workers
 -- Clear webSQL data
(These options will affect only the site in the current tab)

* Select different icon (useful if you want to make it "fit" your Chrome theme). You can even add your own icon.
* You can add the hard refresh button too the context menu too

To change the options -- right-click on the extension icon and select "Options".

PERMISSIONS:

This extension doesn't need any special (heavy) permissions. It can just read your current tab url, clear the cache, storage etc. for the current tab and if you want it can add itself to the context menu                    

擴展基本資訊

名稱 Hard Refresh Hard Refresh
ID ichmdelihgokllcnibkcpciljnggojkj
官方網址 https://chromewebstore.google.com/detail/hard-refresh/ichmdelihgokllcnibkcpciljnggojkj
簡介 Refresh current page bypassing the cache: clear cache + hard reload
檔案大小 21.21 KB
安裝次數 11,798
目前版本 2.1.0.0
更新時間 2019-11-27
上架時間 2019-11-21
評分 4.44/5 共 18 次評分
開發者 https://openaddons.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://openaddons.com/
說明頁面URL https://openaddons.com/hard-refresh-button/
隱私政策頁面URL https://openaddons.com/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "name": "__MSG_name__",
    "version": "2.1.0.0",
    "manifest_version": 2,
    "homepage_url": "https:\/\/openaddons.com\/",
    "description": "__MSG_description__",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "browsingData"
    ],
    "offline_enabled": true,
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "__MSG_icon_hover_text__"
    },
    "incognito": "spanning",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "settings.html"
}