Efficiency Split Screen

Split screen to improve search efficiency. Click search link in one window and open it in another.

Efficiency Split Screenคืออะไร?

Efficiency Split Screen เป็นส่วนขยายของ Chrome ที่พัฒนาโดย autosubtitle.service และคุณลักษณะหลักของมันคือ "Split screen to improve search efficiency. Click search link in one window and open it in another."

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

screenshot
screenshot
screenshot

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

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

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

                        Features:
1. Split screen, display multiple windows on the screen at the same time. 
2. Click a link in one window, the link will open in another window.

Advantage:
1. You don't have to leave the search page and wait for a new page to load.
2. You don‘t have to switch tabs or click the go back button.
3. You will not forget the original search purpose in the maze of links.

Operation:
Ctrl+Mouse Click --> Open link in next window [new tab]
Shift+Mouse Click--> Open link in next window current tab
Click the action icon to enable or disable functions of the extension.

Shortcut key: 
default: Ctrl+Shift+A
mac: Command+Shift+A

---
This addons doesn't collect any user data.
---
Change list:
2.0.10
Add:
Ctrl+Mouse Click --> Open link in next window [new tab]
Shift+Mouse Click--> Open link in next window current tab
1.1.9
fix: This extension may have been corrupted.
1.1.4
Add: "Open link in next window current tab" in right-click menu.
Fix: There are no events, When a website uses history.pushState to change address. 
1.0.3
Improve user experience
Fix: 'show all windows' leads to too many pop-up windows.
1.0.2
Features:
1.  Add collect all tabs in context menu.
2.  Add save all windows layout (You can specify the layout of windows yourself)
Fix:
1. Some of Amazon sites don't split screen automatically.                    

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

ชื่อ Efficiency Split Screen Efficiency Split Screen
ID ffickclfdcokegoihgmdlhcpfpeiklfa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/efficiency-split-screen/ffickclfdcokegoihgmdlhcpfpeiklfa
คำอธิบาย Split screen to improve search efficiency. Click search link in one window and open it in another.
ขนาดไฟล์ 290 KB
จำนวนการติดตั้ง 131
เวอร์ชันปัจจุบัน 2.0.10
อัปเดตครั้งล่าสุด 2023-01-12
วันที่เผยแพร่ 2022-11-18
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา autosubtitle.service
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Efficiency Split Screen",
    "description": "Split screen to improve search efficiency. Click search link in one window and open it in another.",
    "version": "2.0.10",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icons\/deepblue16.png",
            "24": "icons\/deepblue24.png",
            "32": "icons\/deepblue32.png",
            "48": "icons\/deepblue48.png",
            "64": "icons\/deepblue64.png"
        },
        "default_title": "Efficiency Split Screen"
    },
    "icons": {
        "16": "icons\/dblue16.png",
        "24": "icons\/dblue24.png",
        "32": "icons\/dblue32.png",
        "48": "icons\/dblue48.png",
        "64": "icons\/dblue64.png"
    },
    "author": "[email protected]",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            }
        }
    },
    "minimum_chrome_version": "105",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options_ui.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "permissions": [
        "contextMenus",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}