Reload All Tabs
Reload all tabs, reload only tabs with urls and create custom reloading profiles with tons of options.
Reload All Tabs là gì?
Reload All Tabs là một tiện ích mở rộng Chrome được phát triển bởi LI, và tính năng chính của nó là "Reload all tabs, reload only tabs with urls and create custom reloading profiles with tons of options.".
Ả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 All Tabs
Tải xuống các tệp mở rộng Reload All 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 Tabs is a Chrome Extension that let's you refresh your chrome tabs based upon the following parameters: 0. All Tabs 1. Url/urls of tab/tabs (single and multiple inputs) 2. Index/indexes of tab/tabs (single and multiple inputs) 3. Type of refresh (hard or soft)/(bypass the chrome cache or not) 4. Refresh tabs in the current chrome window or all chrome windows 5. Is the tab audible/not audible? 6. Is the tab pinned/not pinned? 7. Is the tab muted/not muted? Instructions: 1. Select a type of refresh (bypassing cache or not) 2. Select which window (current opened chrome window or all chrome windows everywhere) 3. Select what you want to refresh (all tabs, only audible tabs, only tabs with certain urls, all tabs, but not tabs with urls etc.) Why it's good? 4 reasons: 1. It's faster than all the other tab reloading chrome extensions out there. (Reload All Tabs by Mohamed Mansour for example has a delay between the "trigger" and the actual tab-reloading). 2. It's simple to use. 3. It provides numerous options when creating a tab-refreshment-entry/profile. This can be of great use when developing websites as it searches through all the urls of your tabs and reloads only tabs with localhost:8000 and does a hard-refresh (bypassing the chrome cache). 4. It can save you a lot of time if you have to reload a lot of tabs, but you want to reload your tabs based on very specific parameters. You don't want to reload all tabs everywhere, instead, you want to reload all tabs, but not the podcasts you might be listening to. Upcoming Features: - Adding a Timer giving you the option to reload your tabs based on a set time-interval - More options when creating a tab-refresh-profile/entry (title of page, increasing possible parameter-combinations) - Some minor design adjustments - Donate-button/ads?. - Make it visible in the context-menu which tab-refresh-profile/entry is set. - Add more syntax-options to the input fields. Hope it's useful to some of you :)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reload All Tabs |
ID | icncdnmkpbfelimpahkncfjdkdhgammm |
URL Chính Thức | https://chromewebstore.google.com/detail/reload-all-tabs/icncdnmkpbfelimpahkncfjdkdhgammm |
Mô tả | Reload all tabs, reload only tabs with urls and create custom reloading profiles with tons of options. |
Kích Thước Tệp | 120 KB |
Số Lần Cài Đặt | 2,230 |
Phiên Bản Hiện Tại | 1.12 |
Cập Nhật Lần Cuối | 2023-11-09 |
Ngày Phát Hành | 2019-09-04 |
Đánh Giá | 4.21/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | LI |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/lukasinos/refreshness/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reload All Tabs", "version": "1.12", "description": "Reload all tabs, reload only tabs with urls and create custom reloading profiles with tons of options.", "manifest_version": 2, "permissions": [ "storage", "contextMenus", "tabs" ], "browser_action": [], "icons": { "128": "\/img\/icon128.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "scripts": [ "lodash.js", "background.js" ], "persistent": true }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+R", "mac": "MacCtrl+R", "chromeos": "Alt+R", "linux": "Alt+R" } } } } |