Tab Number
Number tabs when the ctrl/alt/cmd button is held.
Tab Number là gì?
Tab Number là một tiện ích mở rộng Chrome được phát triển bởi stugrammer, và tính năng chính của nó là "Number tabs when the ctrl/alt/cmd button is held.".
Ả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 Tab Number
Tải xuống các tệp mở rộng Tab Number 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
A tool for those who uses ctrl/alt/cmd+number to jump between tabs. Display page number when you hold ctrl/alt/cmd key. Version 0.2.0.1: * Now the extension also works with pages having no favicon. * Fixed a bug that the number is not shown on some pages, such as google group. Version 0.1.0.2: * Show tab numbers when alt is held in non-Mac system. * Fixed a bug that tab numbers stay if page is closed with ctrl/cmd+w. * Fixed a bug that tab numbers stay if control is switched to another window when ctrl/alt/cmd is held.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tab Number |
ID | fijaenjgknobfdombbdchngpamggajpm |
URL Chính Thức | https://chromewebstore.google.com/detail/tab-number/fijaenjgknobfdombbdchngpamggajpm |
Mô tả | Number tabs when the ctrl/alt/cmd button is held. |
Kích Thước Tệp | 27.02 KB |
Số Lần Cài Đặt | 1,847 |
Phiên Bản Hiện Tại | 0.2.0.1 |
Cập Nhật Lần Cuối | 2013-12-03 |
Ngày Phát Hành | 2013-12-03 |
Đánh Giá | 3.36/5 Tổng số 55 Đánh Giá |
Nhà Phát Triển | stugrammer |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Number", "description": "Number tabs when the ctrl\/alt\/cmd button is held.", "version": "0.2.0.1", "icons": { "48": "icon-48.gif", "128": "icon-128.gif" }, "permissions": [ "tabs", "*:\/\/*\/*", "chrome:\/\/favicon\/" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "num_tab.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "favicon\/favicon-1.gif", "favicon\/favicon-2.gif", "favicon\/favicon-3.gif", "favicon\/favicon-4.gif", "favicon\/favicon-5.gif", "favicon\/favicon-6.gif", "favicon\/favicon-7.gif", "favicon\/favicon-8.gif", "favicon\/favicon-9.gif" ] } |