Tabs Organizer

Enhanced productivity in the browser with quick navigation through your tabs, bookmarks and history.

Tabs Organizerคืออะไร?

Tabs Organizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rolandcatalinar.90 และคุณลักษณะหลักของมันคือ "Enhanced productivity in the browser with quick navigation through your tabs, bookmarks and history."

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

screenshot
screenshot

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

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

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

                        The extension needs an access to all websites to analyze fonts on every page you visit.
We do not collect any sensitive data.

Tabs could be a mess. The extension helps you to organize your limitless browser tabs.

Tabs Organizer provides you with an essential feature to hide an opened tabs that you don't need at the moment, but want to keep it during your browsing session at the moment.

Make a convenient search by your tabs, bookmarks and recently closed webpages.                    

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

ชื่อ Tabs Organizer Tabs Organizer
ID oogbohnokhdcighelhcfagaijbjadggf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tabs-organizer/oogbohnokhdcighelhcfagaijbjadggf
คำอธิบาย Enhanced productivity in the browser with quick navigation through your tabs, bookmarks and history.
ขนาดไฟล์ 1.9 MB
จำนวนการติดตั้ง 19,711
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2023-01-05
วันที่เผยแพร่ 2023-01-05
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา rolandcatalinar.90
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "short_name": "Tabs Organizer",
    "offline_enabled": true,
    "version": "1.0.2",
    "manifest_version": 3,
    "action": {
        "icons": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "64": "icons\/64.png",
            "128": "icons\/128.png"
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "commands": {
        "open-omni": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Open command menu"
        }
    },
    "background": {
        "service_worker": "js\/bg.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "js\/inject.js",
                "js\/lib\/jquery.js",
                "js\/content.js"
            ],
            "css": [
                "css\/contentstyles.css"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "html\/content.html",
                "html\/tab.html",
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "bookmarks",
        "browsingData",
        "history",
        "scripting",
        "search",
        "storage",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/gstatic.com\/*",
        "*:\/\/*\/*"
    ]
}