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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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. معلومات أساسية عن التمديد
| الاسم | |
| 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"
} | |