Windows Manager for Google Chrome™

Allows to tile Chrome™ windows and emulate workspaces

Windows Manager for Google Chrome™คืออะไร?

Windows Manager for Google Chrome™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Edu Campi และคุณลักษณะหลักของมันคือ "Allows to tile Chrome™ windows and emulate workspaces"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Windows Manager for Google Chrome™

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

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

                        Features:
- Multi-monitor support.
- Emulates up to 9 workspaces.
- Tiles windows to 8 different positions. (4 corners + 4 split screen)
- Remembers the windows workspace assignment between system reboots.
- Allows to define custom keyboard shortcuts.
- Multi-platform support: ChromeOS, Linux, Mac and Windows.

Required Permissions:
- 'Display Notifications': To Notify when switching to another workspace.
- 'Read your browsing history': To recover each window's workspace assignment
after a reboot or browser restart. Check the website for more details.

Code is freely available at GitLab, check the webpage link for more details.

NOTE: Chrome™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

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

ชื่อ Windows Manager for Google Chrome™ Windows Manager for Google Chrome™
ID gophpkegccafhjahoijdembdkbjpiflb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/windows-manager-for-googl/gophpkegccafhjahoijdembdkbjpiflb
คำอธิบาย Allows to tile Chrome™ windows and emulate workspaces
ขนาดไฟล์ 172 KB
จำนวนการติดตั้ง 819
เวอร์ชันปัจจุบัน 0.9.8
อัปเดตครั้งล่าสุด 2018-12-03
วันที่เผยแพร่ 2018-12-03
คะแนน 4.36/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Edu Campi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitlab.com/EduCampi/chromewm/blob/master/README.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Windows Manager for Google Chrome\u2122",
    "description": "Allows to tile Chrome\u2122 windows and emulate workspaces",
    "homepage_url": "https:\/\/gitlab.com\/EduCampi\/chromewm\/blob\/master\/README.md",
    "version": "0.9.8",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_title": "Chrome Windows Manager",
        "default_icon": {
            "38": "icon-38-1.png"
        },
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "tile-left": {
            "description": "Tile window Left",
            "suggested_key": {
                "default": "Alt+Shift+Left"
            }
        },
        "tile-right": {
            "description": "Tile window Right",
            "suggested_key": {
                "default": "Alt+Shift+Right"
            }
        },
        "tile-up": {
            "description": "Tile window Up",
            "suggested_key": {
                "default": "Alt+Shift+Up"
            }
        },
        "tile-down": {
            "description": "Tile window Down",
            "suggested_key": {
                "default": "Alt+Shift+Down"
            }
        },
        "ws-0next": {
            "description": "Next workspace: (Alt+X)"
        },
        "ws-0prev": {
            "description": "Previous workspace: (Alt+Z)"
        },
        "ws-1": {
            "description": "Switch to Workspace 1"
        },
        "ws-2": {
            "description": "Switch to Workspace 2"
        },
        "ws-3": {
            "description": "Switch to Workspace 3"
        },
        "ws-4": {
            "description": "Switch to Workspace 4"
        },
        "ws-5": {
            "description": "Switch to Workspace 5"
        },
        "ws-6": {
            "description": "Switch to Workspace 6"
        },
        "ws-7": {
            "description": "Switch to Workspace 7"
        },
        "ws-8": {
            "description": "Switch to Workspace 8"
        },
        "ws-9": {
            "description": "Switch to Workspace 9"
        }
    },
    "permissions": [
        "notifications",
        "storage",
        "system.display",
        "tabs"
    ]
}