Timer Refresh
Timer refresh the specified page or only refresh the inactive TAB page.
Timer Refreshとは何ですか?
Timer Refreshはthomashg0712によって開発されたChromeの拡張機能で、その主な機能は「Timer refresh the specified page or only refresh the inactive TAB page.」です。
拡張機能のスクリーンショット
Timer Refresh拡張機能のCRXファイルをダウンロード
Timer Refresh拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
For some users with special needs, keeping the page active maybe a good help. 拡張機能の基本情報
| 名前 | |
| ID | fembhgfanglpnpkjcgdacodmefdmfpep |
| 公式URL | https://chrome.google.com/webstore/detail/fembhgfanglpnpkjcgdacodmefdmfpep |
| 説明 | Timer refresh the specified page or only refresh the inactive TAB page. |
| ファイルサイズ | 27.85 KB |
| インストール数 | 42 |
| 現在のバージョン | 0.0.1 |
| 最終更新日 | 2020-01-19 |
| 公開日 | 2020-01-19 |
| 開発者 | thomashg0712 |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"page": "background.html",
"script": "background.js"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"default_locale": "en",
"description": "__MSG_extDescription__",
"icons": {
"128": "img\/on128.png"
},
"manifest_version": 2,
"name": "__MSG_extName__",
"page_action": {
"default_icon": "img\/on128.png",
"default_popup": "popup.html",
"default_title": "__MSG_extName__"
},
"permissions": [
"tabs",
"browsingData",
"webRequest",
"webNavigation",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"version": "0.0.1"
} | |