Workspaces

Organize browser tabs into workspaces.

Workspacesคืออะไร?

Workspaces เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vojtěch Smejkal และคุณลักษณะหลักของมันคือ "Organize browser tabs into workspaces."

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

screenshot
screenshot

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

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

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

                        Too many tabs open? Create workspaces, put your tabs in there, and switch between them whenever you need. Workspace automatically saves all your tabs whenever you close the window and restores them once you open it again.

You can create a workspace for a particular subject in school, personal project, gift idea, travel plan, or others.

Version 0.7
=========
- New option to keep workspaces sorted by name
- New option to add new workspaces to the top
- Open workspaces are visually marked in the list
- Import & Export
- Better local files handling
- Fixed restoring workspaces in fullscreen mode                    

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

ชื่อ Workspaces Workspaces
ID hpljjefgmnkloakbfckghmlapghabgfa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/workspaces/hpljjefgmnkloakbfckghmlapghabgfa
คำอธิบาย Organize browser tabs into workspaces.
ขนาดไฟล์ 1006 KB
จำนวนการติดตั้ง 7,004
เวอร์ชันปัจจุบัน 0.7
อัปเดตครั้งล่าสุด 2024-02-18
วันที่เผยแพร่ 2020-10-09
คะแนน 4.43/5 รวมทั้งหมด 42 คะแนน
ผู้พัฒนา Vojtěch Smejkal
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vsmejkal/chrome-workspaces
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Workspaces",
    "version": "0.7",
    "manifest_version": 3,
    "description": "Organize browser tabs into workspaces.",
    "homepage_url": "https:\/\/github.com\/vsmejkal\/chrome-workspaces",
    "icons": {
        "16": "src\/icons\/extension\/icon16.png",
        "32": "src\/icons\/extension\/icon32.png",
        "48": "src\/icons\/extension\/icon48.png",
        "128": "src\/icons\/extension\/icon128.png",
        "256": "src\/icons\/extension\/icon256.png"
    },
    "background": {
        "service_worker": "src\/background\/serviceWorker.js",
        "type": "module"
    },
    "options_ui": {
        "page": "src\/options\/options.html",
        "open_in_tab": false
    },
    "action": {
        "default_icon": {
            "16": "src\/icons\/extension\/icon16.png",
            "24": "src\/icons\/extension\/icon24.png",
            "32": "src\/icons\/extension\/icon32.png",
            "48": "src\/icons\/extension\/icon48.png"
        },
        "default_title": "Workspaces",
        "default_popup": "src\/popup\/popup.html"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "tabGroups"
    ],
    "optional_host_permissions": [
        "file:\/\/*\/*"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+W"
            }
        }
    }
}