Reload All Tabs
Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.
Reload All Tabsとは何ですか?
Reload All Tabsはhttps://mohamedmansour.comによって開発されたChromeの拡張機能で、その主な機能は「Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.」です。
拡張機能のスクリーンショット
Reload All Tabs拡張機能のCRXファイルをダウンロード
Reload All Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
If you want to remove the browser action button (top right), just right click and choose "Hide button". FOLLOW ME ON TWITTER: https://twitter.com/mohamedmansour SOURCE CODE: http://goo.gl/dGDD (GitHub) Ways to Reload All Tabs: - Right click, choose "Reload this window", you can add more options, read next section. - The Blue arrow Icon on the Extension Bar top right (Click on it) - Keyboard Shortcut: Alt+Shift+R (you need to initially set it manually) Add more Context Menus Configurable in Options (enable whatever you want): - Reload all tabs in current window - Reload all tabs in all windows - Reload only pinned or unpinned tabs in current window - Reload all tabs to the left or right - Reload tabs on startup - Allow clearing (bypass) cache while reload. - Close tabs to the left or right Modify the Keyboard Shortcut: - To make it even more secure, we removed all content script permissions, and used chrome commands instead. - Visit chrome://extensions/shortcuts in Chrome to update the combination to anything you want!
拡張機能の基本情報
名前 | Reload All Tabs |
ID | midkcinmplflbiflboepnahkboeonkam |
公式URL | https://chromewebstore.google.com/detail/reload-all-tabs/midkcinmplflbiflboepnahkboeonkam |
説明 | Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup. |
ファイルサイズ | 24.38 KB |
インストール数 | 111,178 |
現在のバージョン | 5.0.0 |
最終更新日 | 2021-05-06 |
公開日 | 2020-06-01 |
評価 | 4.39/5 合計 229 レビュー |
開発者 | https://mohamedmansour.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://github.com/mohamedmansour/reload-all-tabs-extension/ |
ヘルプページのURL | http://github.com/mohamedmansour/reload-all-tabs-extension/issues |
プライバシーポリシーページのURL | https://mohamedmansour.com/extensions/privacy.html |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reload All Tabs", "version": "5.0.0", "manifest_version": 3, "description": "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "action": { "default_icon": "img\/icon128.png", "default_title": "Reload All Tabs" }, "background": { "service_worker": "reload_controller.js" }, "options_page": "options.html", "permissions": [ "storage", "tabs", "contextMenus" ], "commands": { "reload": { "suggested_key": { "default": "Ctrl+Shift+R", "mac": "Command+Shift+R" }, "description": "Toggle reload" } } } |