Page Refresher
A simple per-tab automatic page refresher/reloader.
Page Refresherとは何ですか?
Page RefresherはAlex Nguyenによって開発されたChromeの拡張機能で、その主な機能は「A simple per-tab automatic page refresher/reloader.」です。
拡張機能のスクリーンショット
Page Refresher拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
} | |