Just Refresh
One-click toggle auto-refresh
Just Refreshとは何ですか?
Just Refreshはclaxtons4によって開発されたChromeの拡張機能で、その主な機能は「One-click toggle auto-refresh」です。
拡張機能のスクリーンショット
Just Refresh拡張機能のCRXファイルをダウンロード
Just Refresh拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Just Refresh is an open source extension that automatically refreshes a page on a set interval with one click. Change the interval by right clicking the icon, and selecting "Options". You can auto refresh as many tabs are you like. If you like the extension, please leave a review and support me here: https://ko-fi.com/claxtastic New in v1.2: Apply settings to any URL from a given domain You can view the source of the extension here: https://github.com/Claxtastic/just-refresh And find my other projects here: https://github.com/Claxtastic The extension was designed overall to be minimal and straight to the point. It requires two permissions: 1. activeTab: To access the current tab and start the refresh loop. 2. storage: To locally store the current refresh interval.
拡張機能の基本情報
名前 | Just Refresh |
ID | pgaimkehoiabhliejchbnamlboniofpd |
公式URL | https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd |
説明 | One-click toggle auto-refresh |
ファイルサイズ | 44.83 KB |
インストール数 | 1,000 |
現在のバージョン | 1.2 |
最終更新日 | 2021-03-06 |
公開日 | 2019-07-23 |
評価 | 4.43/5 合計 7 レビュー |
開発者 | claxtons4 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Claxtastic/just-refresh |
ヘルプページのURL | https://ko-fi.com/claxtastic |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Just Refresh", "version": "1.2", "description": "One-click toggle auto-refresh", "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "browser_action": [], "commands": { "toggle-refresh": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" }, "description": "Toggle refresh with keybind" } }, "background": { "scripts": [ "jquery.min.js", "background.js" ], "persistent": false }, "icons": { "128": "images\/just_refresh128.png" }, "manifest_version": 2 } |