Active tabs
Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.
Active tabsคืออะไร?
Active tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://shaunsational.github.io และคุณลักษณะหลักของมันคือ "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Active tabs
ดาวน์โหลดไฟล์ส่วนขยาย Active tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Shows a count of total active tabs across all windows on the browser icon. When clicked a searchable list of all the tabs appears broken down by window (each window is collapsible). Clicking any tab will immediately focus that tab, even if it is minimized. You can also close individual tabs or entire windows from the list. You have to "Allow in incognito" on the manage extensions page to show incognito tabs, it will not show them by default. Updates - 1.2 - now adds a background to tabs playing audio, also searchable by using the keyword "audio" 1.3 - added keyboard shortcuts (open help by hitting ?), prefixed keywords with _ to help separate further. @shaunsational
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Active tabs |
ID | pbihheplocihoglaokfdcjadbjlhijgb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/active-tabs/pbihheplocihoglaokfdcjadbjlhijgb |
คำอธิบาย | Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows. |
ขนาดไฟล์ | 50.87 KB |
จำนวนการติดตั้ง | 510 |
เวอร์ชันปัจจุบัน | 1.3.1 |
อัปเดตครั้งล่าสุด | 2018-11-06 |
วันที่เผยแพร่ | 2018-11-06 |
คะแนน | 4.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | https://shaunsational.github.io |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://shaunsational.github.io/extensions#active-tabs |
URL หน้าช่วยเหลือ | https://github.com/shaunsational/chrome-ext-ActiveTabs/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Active tabs", "description": "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.", "version": "1.3.1", "icons": { "16": "assets\/icon.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "browser_action": { "default_icon": { "16": "assets\/icon.png", "48": "assets\/icon_48.png" }, "default_title": "Active tabs", "default_popup": "popup.htm" }, "permissions": [ "*:\/\/*\/", "chrome:\/\/favicon\/", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |