Reload tabs
Reload all of the current window's tabs
Reload tabsとは何ですか?
Reload tabsはmsskmlrnによって開発されたChromeの拡張機能で、その主な機能は「Reload all of the current window's tabs」です。
拡張機能のスクリーンショット
Reload tabs拡張機能のCRXファイルをダウンロード
Reload tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Reload all of the current window's tabs by pressing the icon or using the Ctrl+Shift+E shortcut. You can change the default shortcut to something else by opening the extensions page (chrome://extensions/) and clicking the keyboard shortcuts link in the bottom right corner of the page. From there, find the Reload tabs extension and enter a keyboard shortcut of your choosing. The source code can be found at https://github.com/msskmlrn/reload-tabs.
拡張機能の基本情報
名前 | Reload tabs |
ID | onncmmefekihehgnljddnkbbiplicomg |
公式URL | https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg |
説明 | Reload all of the current window's tabs |
ファイルサイズ | 6.75 KB |
インストール数 | 31 |
現在のバージョン | 1.0 |
最終更新日 | 2014-06-06 |
公開日 | 2014-06-06 |
開発者 | msskmlrn |
支払い方法 | free |
ヘルプページのURL | https://github.com/msskmlrn/reload-tabs |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reload tabs", "short_name": "Reload tabs", "version": "1.0", "description": "Reload all of the current window's tabs", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "reload.js" ], "persistent": false }, "commands": { "reload-tabs": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" }, "description": "Reload tabs" } }, "permissions": [ "tabs" ] } |