All Tabs Reloader
To reload all tabs, use the keyboard shortcut or toolbar button.
Τι είναι το All Tabs Reloader;
Το All Tabs Reloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον worldaddons.com, και η κύρια λειτουργία του είναι "To reload all tabs, use the keyboard shortcut or toolbar button.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης All Tabs Reloader
Λήψη αρχείων επέκτασης All Tabs Reloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
"All Tabs Reloader" is a lightweight extension that allows you to reload all tabs with the click of a button. To reload all tabs in your browser, simply install this extension and select the - Reload All Tabs - button from the toolbar. All active tabs will be reloaded when you press the button. You can filter open tabs by state, including inactive, audible, disposable, or private. If you'd like to prevent a tab from reloading, go to the preferences page and check the box for the option. Please keep in mind that you can't prevent a tab based on its URL.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cgmnahabbgcglgodggdoimncelmanegm |
Επίσημο URL | https://chrome.google.com/webstore/detail/all-tabs-reloader/cgmnahabbgcglgodggdoimncelmanegm |
Περιγραφή | To reload all tabs, use the keyboard shortcut or toolbar button. |
Μέγεθος Αρχείου | 25.66 KB |
Αριθμός Εγκαταστάσεων | 70 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2022-05-25 |
Ημερομηνία Δημοσίευσης | 2022-05-25 |
Αξιολόγηση | 4.91/5 Συνολικά 47 Αξιολογήσεις |
Προγραμματιστής | worldaddons.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://worldaddons.com/all-tabs-reloader/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://worldaddons.com/contact/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://worldaddons.com/privacy-policy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1", "manifest_version": 3, "offline_enabled": true, "name": "All Tabs Reloader", "permissions": [ "storage" ], "short_name": "all-tabs-reloader", "homepage_url": "https:\/\/worldaddons.com\/all-tabs-reloader\/", "description": "To reload all tabs, use the keyboard shortcut or toolbar button.", "background": { "service_worker": "background.js" }, "options_ui": { "open_in_tab": true, "page": "source\/options\/options.html" }, "commands": { "reload-action": { "description": "All Tabs Reloader", "suggested_key": { "mac": "Alt+Shift+C", "default": "Alt+Shift+C" } } }, "action": { "default_title": "All Tabs Reloader", "default_icon": { "16": "source\/icons\/16.png", "32": "source\/icons\/32.png", "48": "source\/icons\/48.png", "64": "source\/icons\/64.png" } }, "icons": { "16": "source\/icons\/16.png", "32": "source\/icons\/32.png", "48": "source\/icons\/48.png", "64": "source\/icons\/64.png", "128": "source\/icons\/128.png" } } |