Hard Refresh
Refresh current page bypassing the cache: clear cache + hard reload
Τι είναι το Hard Refresh;
Το Hard Refresh είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://openaddons.com, και η κύρια λειτουργία του είναι "Refresh current page bypassing the cache: clear cache + hard reload".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hard Refresh
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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" } |