Reload All Tabs
This extension reloads all tabs in the active window.
Reload All Tabsとは何ですか?
Reload All Tabsはmatthewlbergによって開発されたChromeの拡張機能で、その主な機能は「This extension reloads all tabs in the active window.」です。
拡張機能のスクリーンショット
Reload All Tabs拡張機能のCRXファイルをダウンロード
Reload All Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to refresh all tabs with a simple click of a button. You can also use the keyboard shortcut Alt + Shift + R to reload all tabs. 拡張機能の基本情報
| 名前 | |
| ID | lgpdljdpanfecnpindkbnikegohoobci |
| 公式URL | https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci |
| 説明 | This extension reloads all tabs in the active window. |
| ファイルサイズ | 4.38 KB |
| インストール数 | 46,699 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2014-01-16 |
| 公開日 | 2014-01-16 |
| 評価 | 4.47/5 合計 58 レビュー |
| 開発者 | matthewlberg |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Reload All Tabs",
"description": "This extension reloads all tabs in the active window.",
"version": "1.0",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Reload all tabs"
}
},
"permissions": [
"tabs",
"background"
]
} | |