Fast reload tabs
Quick reload of all tabs - from context menu, action button or on startup.
Τι είναι το Fast reload tabs;
Το Fast reload tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον developerartiint, και η κύρια λειτουργία του είναι "Quick reload of all tabs - from context menu, action button or on startup.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fast reload tabs
Λήψη αρχείων επέκτασης Fast reload tabs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Fast reload tabs - Quickly Refresh Your Browser Tabs With the "Fast reload tabs" extension for Google Chrome, you can refresh all your browser tabs in just one click, saving you time and hassle. Whether you're a web developer who needs to test website changes, or simply want to reload multiple tabs at once, this add-on provides a convenient way to do so. When you click the "Reload All Tabs" button, all of your open tabs will be refreshed simultaneously, allowing you to see the latest updates and content. This can be especially useful if you're browsing a site that frequently updates its content, such as a news site or social media platform. Types of reload actions: - Reload all tabs in current window - Reload all tabs in all windows - Reload only pinned tabs in current window - Reload only unpinned tabs in current window - Reload all tabs to the left - Reload all tabs to the right - Close all tabs to the left - Close all tabs to the right The extension is lightweight and easy to use, with a simple interface that lets you quickly reload your tabs without any unnecessary steps. It also has options to customize the behavior, such as delay between reloads or excluding pinned tabs, to fit your preferences. In the case of the "Fast Reload Tabs" add-on, the webRequest method is used to intercept HTTP requests that are sent by the browser. As a result, the add-on is able to quickly reload tabs when a user opens multiple web pages at once. Specifically, the add-on uses webRequest.onBeforeRequest to intercept the HTTP request before sending it to the server. The add-on then analyzes the request and compares its URL with the list of tabs to be reloaded. If the URL matches any of the tabs, the add-on calls chrome.tabs.reload to reload the tab. By using the webRequest method, the "Fast Reload Tabs" add-on runs in the background, intercepting HTTP requests and responding to them in real time, which speeds up the process of reloading tabs in the browser. Try "Reload All Tabs" today and see how it can streamline your browsing experience!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Fast reload tabs |
ID | cmgldjpfdhenfpmlaigicaeplnjcdcbo |
Επίσημο URL | https://chrome.google.com/webstore/detail/fast-reload-tabs/cmgldjpfdhenfpmlaigicaeplnjcdcbo |
Περιγραφή | Quick reload of all tabs - from context menu, action button or on startup. |
Μέγεθος Αρχείου | 156 KB |
Αριθμός Εγκαταστάσεων | 103,643 |
Τρέχουσα Έκδοση | 3.0.0 |
Τελευταία Ενημέρωση | 2023-04-09 |
Ημερομηνία Δημοσίευσης | 2023-02-16 |
Αξιολόγηση | 4.79/5 Συνολικά 38 Αξιολογήσεις |
Προγραμματιστής | developerartiint |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Υποστηριζόμενες Γλώσσες | id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "3.0.0", "manifest_version": 3, "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "64": "img\/icon64.png", "128": "img\/icon128.png", "256": "img\/icon256.png" }, "action": { "default_icon": "img\/icon128.png", "default_title": "__MSG_appName__" }, "background": { "service_worker": "js\/background.js" }, "options_page": "html\/options.html", "permissions": [ "storage", "tabs", "contextMenus", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/cs.js" ], "run_at": "document_end", "match_about_blank": true } ], "commands": { "reload": { "suggested_key": { "default": "Ctrl+Shift+R", "mac": "Command+Shift+R" }, "description": "__MSG_toogle__" } } } |