Most Recent Used Tab Stack
Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.
Most Recent Used Tab Stack là gì?
Most Recent Used Tab Stack là một tiện ích mở rộng Chrome được phát triển bởi brandon, và tính năng chính của nó là "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned 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 Most Recent Used Tab Stack
Tải xuống các tệp mở rộng Most Recent Used Tab Stack 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
This extension moves your most recently used (MRU) tab to the front or back. Allowing Ctrl+tab to work in most recently used order. This is an update to https://goo.gl/F0pGhZ to support the new api. Also works with pinned tabs. 1.5 - Simpler Code, fix to sometimes send the tab to the back. 1.4 - Fix to support chrome bug while tab.query is broken. 1.3 - Right to left support. 1.2 - Removed more permissions. Now doesn't need anything additional to function. 1.1 - Working with multiple windows now. Removed some unneeded permissions.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Most Recent Used Tab Stack |
ID | kbedhikfgjjlhibaoafccbkeeppnhage |
URL Chính Thức | https://chromewebstore.google.com/detail/most-recent-used-tab-stac/kbedhikfgjjlhibaoafccbkeeppnhage |
Mô tả | Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs. |
Kích Thước Tệp | 15.78 KB |
Số Lần Cài Đặt | 252 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2021-06-04 |
Ngày Phát Hành | 2018-02-07 |
Đánh Giá | 4.92/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | brandon |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Most Recent Used Tab Stack", "version": "1.5", "description": "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.", "short_name": "MRU Tab Stack", "background": { "persistant": false, "scripts": [ "bg.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "storage" ], "commands": { "next": { "suggested_key": { "default": "Ctrl+Space" }, "description": "Same as Ctrl+Tab but won't sort until you let go." } } } |