Operator

Your productivity assistant

Operatorคืออะไร?

Operator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย operator.extension และคุณลักษณะหลักของมันคือ "Your productivity assistant"

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

screenshot
screenshot
screenshot

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

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

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

                        A command palette inspired by⇧⌘P in Visual Studio Code and ⇧⌘A in Webstorm with commands and shortcuts to help you stay organized and productive.

Supported Commands

- pin unpin tab
- unpin all tabs
- pin all tabs
- close all unpinned tabs
- close tabs to the right
- move current tab to new window
- collect all tabs into one window
- move tab highlighted tabs left
- move tab highlighted tabs right
- move tab highlighted tabs to start
- move tab highlighted tabs to end
- open extension manager
- open extension shortcuts manager                    

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

ชื่อ Operator Operator
ID jdmngaaglkkhkfegaopojolefpnikcpg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/operator/jdmngaaglkkhkfegaopojolefpnikcpg
คำอธิบาย Your productivity assistant
ขนาดไฟล์ 1006 KB
จำนวนการติดตั้ง 37
เวอร์ชันปัจจุบัน 0.1.7
อัปเดตครั้งล่าสุด 2022-12-20
วันที่เผยแพร่ 2022-06-07
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา operator.extension
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rs-lkroneman/operator-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Operator",
    "description": "Your productivity assistant",
    "version": "0.1.7",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Open the popup"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "_execute_action": {
            "description": "Open Popup",
            "suggested_key": {
                "default": "Ctrl+Space",
                "windows": "Ctrl+Space",
                "mac": "MacCtrl+Space"
            }
        },
        "pin_unpin_tab": {
            "description": "Pin or unpin the current tab.",
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "windows": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            }
        },
        "move_tab_left": {
            "suggested_key": {
                "default": "Shift+Alt+Left",
                "windows": "Shift+Alt+Left",
                "mac": "MacCtrl+Shift+Left"
            },
            "description": "Move selected tab(s) left"
        },
        "move_tab_right": {
            "suggested_key": {
                "default": "Shift+Alt+Right",
                "windows": "Shift+Alt+Right",
                "mac": "MacCtrl+Shift+Right"
            },
            "description": "Move selected tab(s) right"
        },
        "move_tab_to_front": {
            "description": "Move selected tab to the front"
        },
        "move_tab_to_end": {
            "description": "Move selected tab to the end"
        },
        "close_all_unpinned_tabs": {
            "description": "Close all unpinned tabs"
        },
        "close_tabs_to_the_right": {
            "description": "Close all tabs to the right"
        },
        "pin_all_tabs": {
            "description": "Pin all tabs in current window"
        },
        "unpin_all_tabs": {
            "description": "un-Pin all tabs in current window"
        }
    },
    "icons": {
        "16": "favicon\/favicon.ico",
        "32": "favicon\/favicon-32x32.png",
        "128": "favicon\/favicon-192x192.png"
    },
    "permissions": [
        "tabs"
    ]
}