Page Refresher
A simple per-tab automatic page refresher/reloader.
Page Refresher क्या है?
Page Refresher Alex Nguyen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple per-tab automatic page refresher/reloader."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Page Refresher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |