Reload tabs
Reload all of the current window's tabs
Reload tabs là gì?
Reload tabs là một tiện ích mở rộng Chrome được phát triển bởi msskmlrn, và tính năng chính của nó là "Reload all of the current window's tabs".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Reload tabs
Tải xuống các tệp mở rộng Reload tabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reload tabs |
ID | onncmmefekihehgnljddnkbbiplicomg |
URL Chính Thức | https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg |
Mô tả | Reload all of the current window's tabs |
Kích Thước Tệp | 6.75 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-06-06 |
Ngày Phát Hành | 2014-06-06 |
Nhà Phát Triển | msskmlrn |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/msskmlrn/reload-tabs |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |