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! 擴展基本資訊
| 名稱 | |
| ID | midkcinmplflbiflboepnahkboeonkam |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
}
} | |