Organize Tabs
Organize Tabs "Easily group, ungroup, and sort your tabs in Chrome with this extension. Use the "Group by" button to group tabs by…
Organize Tabsคืออะไร?
Organize Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yoel Diamant และคุณลักษณะหลักของมันคือ "Organize Tabs "Easily group, ungroup, and sort your tabs in Chrome with this extension. Use the "Group by" button to group tabs by…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Organize Tabs
ดาวน์โหลดไฟล์ส่วนขยาย Organize Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Organize Tabs "Easily group, ungroup, and sort your tabs in Chrome with this extension. Use the "Group by" button to group tabs by domain name, the "Ungroup" button to ungroup all tabs, the "Delete Duplicates" button to delete any tabs with the same URL, and the "Sort by Title" and "Sort by Domain" buttons to sort your tabs by title or domain name." "Tired of a cluttered browser with tabs scattered all over the place? This extension makes it easy to organize your tabs and keep your browsing experience tidy. Group tabs by domain, ungroup all tabs, delete duplicate tabs, and sort tabs by title or domain name with just a few clicks." "Get your tabs in order with this handy extension for Chrome. Whether you want to group tabs by domain, ungroup all tabs, delete duplicate tabs, or sort tabs by title or domain name, this extension has you covered. Say goodbye to disorganized tabs and hello to a cleaner, more efficient browsing experience." "Keep your tabs organized and easy to manage with this extension for Chrome. Group tabs by domain, ungroup all tabs, delete duplicate tabs, and sort tabs by title or domain name with just a few clicks. With this extension, you'll be able to quickly and easily organize your tabs to suit your needs."
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Organize Tabs |
ID | djgeceahpnaiipkafbjanjgamopekgeg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/organize-tabs/djgeceahpnaiipkafbjanjgamopekgeg |
คำอธิบาย | Organize Tabs "Easily group, ungroup, and sort your tabs in Chrome with this extension. Use the "Group by" button to group tabs by… |
ขนาดไฟล์ | 10.98 KB |
จำนวนการติดตั้ง | 71 |
เวอร์ชันปัจจุบัน | 3.0 |
อัปเดตครั้งล่าสุด | 2023-01-02 |
วันที่เผยแพร่ | 2022-12-29 |
คะแนน | 4.40/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Yoel Diamant |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/yoel-diamant/Organize-Tabs |
URL หน้าช่วยเหลือ | https://github.com/yoel-diamant/Organize-Tabs |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Organize Tabs", "version": "3.0", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "tabGroups", "contextMenus" ], "commands": { "group-by-domain": { "suggested_key": { "default": "Alt+Shift+G", "mac": "Command+Shift+G" }, "description": "Group the tabs by domain" }, "delete-duplicate": { "suggested_key": { "default": "Alt+Shift+D", "mac": "Command+Shift+D" }, "description": "Delete duplicate tabs by url" }, "ungroup": { "suggested_key": { "default": "Alt+Shift+D", "mac": "Command+Shift+D" }, "description": "Ungroup all the tabs" } }, "background": { "service_worker": "backround.js", "type": "module" } } |