Tab Organizer

Manager for quickly finding and organizing all your tabs.

Tab Organizerคืออะไร?

Tab Organizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kaescripts.blogspot.com และคุณลักษณะหลักของมันคือ "Manager for quickly finding and organizing all your tabs."

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

screenshot
screenshot
screenshot

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

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

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

                        Help/FAQ:
http://goo.gl/dv2S

Bugs and feature requests:
http://goo.gl/Vwc3

Recent changes:
http://goo.gl/zZJT


» ATTENTION:
When installing, this extension says that it "needs all data on all websites", which is not true. It only says this because of the keyboard shortcut that is used to open Tab Organizer.


» ATTENTION:
Tab Organizer does NOT save your windows and tabs when you close Chrome. If you want your windows and tabs to be saved, here is what you must do:

 1. Go to Wrench -> Settings.

 2. On the left side, make sure you're on the "Settings" tab.

 3. In the main section, underneath "On startup", make sure that "Continue where I left off" is selected.

Now, if you want to close Chrome, you MUST use Wrench -> Exit to close all the windows and tabs at the same time. As long as you do it this way, then the windows and tabs will be restored when reopening Chrome.

Alternatively, until Tab Organizer gets session save functionality, you could try any of the several session saver extensions currently available for Chrome.


Do you have so many tabs that you have a hard time organizing them? No longer! This extension makes it easy to find and manage all your tabs.

How does it work? Click on the icon in the upper-right to open a popup. This popup lists all your windows and tabs so you can easily see them at a glance.

You can select and close tabs. You can drag tabs within the same window, or move them to a different window. You can even select multiple tabs at once by holding down Shift/Ctrl (or ⌘) and left clicking on the tab.

You can also use a powerful search box to quickly find exactly the tabs you want. The syntax is very similar to Google Search, with a few additional features.

Power users can use macros to make tedious tasks like moving or closing tabs much easier.                    

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

ชื่อ Tab Organizer Tab Organizer
ID gbaokejhnafeofbniplkljehipcekkbh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-organizer/gbaokejhnafeofbniplkljehipcekkbh
คำอธิบาย Manager for quickly finding and organizing all your tabs.
ขนาดไฟล์ 109 KB
จำนวนการติดตั้ง 9,526
เวอร์ชันปัจจุบัน 4.3.1
อัปเดตครั้งล่าสุด 2018-06-02
วันที่เผยแพร่ 2018-06-01
คะแนน 4.41/5 รวมทั้งหมด 145 คะแนน
ผู้พัฒนา https://kaescripts.blogspot.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://kaescripts.blogspot.com/
URL หน้าช่วยเหลือ http://code.google.com/p/tab-organizer/issues/list
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Tab Organizer"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "lib\/Keyboard.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en",
    "description": "Manager for quickly finding and organizing all your tabs.",
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png"
    },
    "name": "Tab Organizer",
    "options_page": "options.html",
    "permissions": [
        "chrome:\/\/favicon\/",
        "bookmarks",
        "history",
        "tabs",
        "idle"
    ],
    "version": "4.3.1"
}