Close Unpinned Tabs
Close all unpinned tabs with a short cut "Alt + Shift + O"
Close Unpinned Tabs là gì?
Close Unpinned Tabs là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Close all unpinned tabs with a short cut "Alt + Shift + O"".
Ả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 Close Unpinned Tabs
Tải xuống các tệp mở rộng Close Unpinned 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
Allows you to set a shortcut to close all unpinned tabs and pin/unpin an existing tab from the current window. Alt+Shift+O is the default to close tabs Alt + Shift + P to pin/unpin a tab.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Close Unpinned Tabs |
ID | ajijmjelflcpkaapmddfoklcamplblpb |
URL Chính Thức | https://chromewebstore.google.com/detail/close-unpinned-tabs/ajijmjelflcpkaapmddfoklcamplblpb |
Mô tả | Close all unpinned tabs with a short cut "Alt + Shift + O" |
Kích Thước Tệp | 293 KB |
Số Lần Cài Đặt | 115 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2019-09-05 |
Ngày Phát Hành | 2019-09-05 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Unpinned Tabs", "version": "0.2", "description": "Close all unpinned tabs with a short cut \"Alt + Shift + O\"", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "broom.png", "32": "broom.png", "48": "broom.png", "128": "broom128.png" }, "default_title": "Clutter" }, "commands": { "toggle_pin": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Toggle if the pin is tabbed" }, "close_unpinned": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "Close all tabs excepts pinned ones" } }, "manifest_version": 2 } |