Tab Organizer

Organizes and Rearranges tabs by URL.

Tab Organizerคืออะไร?

Tab Organizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Devin Soni และคุณลักษณะหลักของมันคือ "Organizes and Rearranges tabs by URL."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Organizer

ดาวน์โหลดไฟล์ส่วนขยาย Tab Organizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        *** FEATURED ON PRODUCT HUNT AND LIFEHACKER ***

Organizes the unpinned tabs in the current window by grouping them by URL. Tabs from the same base URL (the same website) will be grouped together, and groups will be made in the order that the first tab from that group appears in the original order.

Use the extension by clicking its button, and it will rearrange the tabs in the current window, ignoring any pinned tabs.

* * * NEW IN VERSION 1.0: * * *
* Options page to manage settings
* Automatically sort tabs every 5, 30, or 60 minutes.
* Keyboard shortcut "Ctrl + Shift + A" to sort on command.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tab Organizer Tab Organizer
ID kkcbifggchajpkagcpagenpfghbplghc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc
คำอธิบาย Organizes and Rearranges tabs by URL.
ขนาดไฟล์ 8.1 KB
จำนวนการติดตั้ง 6,272
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-05-12
วันที่เผยแพร่ 2016-05-11
คะแนน 4.43/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา Devin Soni
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Organizer",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Organizes and Rearranges tabs by URL.",
    "background": {
        "persistent": true,
        "scripts": [
            "bg.js",
            "options.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "commands": {
        "activate": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Activate sorting"
        }
    },
    "options_page": "options.html"
}