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」です。
拡張機能のスクリーンショット
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 |
ID | ichmdelihgokllcnibkcpciljnggojkj |
公式URL | 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 |
Eメール | [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" } |