Page Refresher
A simple per-tab automatic page refresher/reloader.
Τι είναι το Page Refresher;
Το Page Refresher είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alex Nguyen, και η κύρια λειτουργία του είναι "A simple per-tab automatic page refresher/reloader.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Page Refresher
Λήψη αρχείων επέκτασης Page Refresher σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Features: - tab based (tab ID) reloads - 5 customizable intervals - refresh info table - blocks automatic reloads or meta refreshes (per tab) - bypass local cache (per tab) - context menu functionality Required Permissions: - storage - used to store default settings and save user preferences - contextMenus - used to enable the optional context (right click) menu for this extension - tabs - used to get the title from each tab (to be displayed in the options page) - activeTab - used to execute the code to block reloads - scripting - required for block reloading feature Warning: Some sites may restrict your access to them if you make too many requests (or reloads) within a short period of time.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Page Refresher |
ID | hedjdjlfiijoibijchekancllfeppchp |
Επίσημο URL | https://chromewebstore.google.com/detail/page-refresher/hedjdjlfiijoibijchekancllfeppchp |
Περιγραφή | A simple per-tab automatic page refresher/reloader. |
Μέγεθος Αρχείου | 85.43 KB |
Αριθμός Εγκαταστάσεων | 3,133 |
Τρέχουσα Έκδοση | 2.0.0 |
Τελευταία Ενημέρωση | 2024-01-02 |
Ημερομηνία Δημοσίευσης | 2020-08-24 |
Αξιολόγηση | 4.82/5 Συνολικά 11 Αξιολογήσεις |
Προγραμματιστής | Alex Nguyen |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/alexnguyennz/pagerefresher |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Page Refresher", "version": "2.0.0", "author": "Alex Nguyen", "description": "A simple per-tab automatic page refresher\/reloader.", "icons": { "16": ".\/src\/img\/logo-16.png", "48": ".\/src\/img\/logo-48.png", "128": ".\/src\/img\/logo-128.png" }, "background": { "service_worker": "src\/js\/background.js", "type": "module" }, "permissions": [ "storage", "contextMenus", "tabs", "activeTab", "scripting" ], "action": { "default_title": "Page Refresher", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "homepage_url": "https:\/\/github.com\/alexnguyennz\/pagerefresher" } |