Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
Simple Auto Refreshとは何ですか?
Simple Auto Refreshはtobias.sameschによって開発されたChromeの拡張機能で、その主な機能は「lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval」です。
拡張機能のスクリーンショット
Simple Auto Refresh拡張機能のCRXファイルをダウンロード
Simple Auto Refresh拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.
拡張機能の基本情報
名前 | Simple Auto Refresh |
ID | jghdcjbendekbeopdlofjcnogeeemjgd |
公式URL | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
説明 | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
ファイルサイズ | 10.36 KB |
インストール数 | 18 |
現在のバージョン | 1.0.3 |
最終更新日 | 2021-02-18 |
公開日 | 2021-01-09 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | tobias.samesch |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Auto Refresh", "version": "1.0.3", "description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval", "permissions": [ "declarativeContent", "storage", "alarms", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_page": "options.html", "page_action": { "default_popup": "popup.html", "default_icon": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" } }, "icons": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" }, "manifest_version": 2 } |