Open in specific window

Adds a right-click menu that opens a link in a specified window

Open in specific windowคืออะไร?

Open in specific window เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jfsl.dk และคุณลักษณะหลักของมันคือ "Adds a right-click menu that opens a link in a specified window"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open in specific window

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

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

                        Chrome will by default open any link in the same window as it was clicked. 

If you have multiple chrome windows open, this extension will add a right-click menu allowing you to choose which window to open the link in. 

The menu will automatically show the current window/tab title of the windows you can choose to open the link in. Optionally you can also name your open windows by clicking the "Open in specific window" icon in the upper right-hand corner.                    

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

ชื่อ Open in specific window Open in specific window
ID nkgphogbgnehgdfkpiknbdnjaamlbgmo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-specific-window/nkgphogbgnehgdfkpiknbdnjaamlbgmo
คำอธิบาย Adds a right-click menu that opens a link in a specified window
ขนาดไฟล์ 104 KB
จำนวนการติดตั้ง 1,198
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2018-07-17
วันที่เผยแพร่ 2018-07-17
คะแนน 3.96/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา https://jfsl.dk
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://jfsl.dk/oisw-intro.php
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in specific window",
    "version": "1.3.1",
    "manifest_version": 2,
    "description": "Adds a right-click menu that opens a link in a specified window",
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "background"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "page": "background\/background.html"
    },
    "browser_action": {
        "default_title": "Name this window",
        "default_popup": "browserAction\/browserAction.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/main.js"
            ],
            "all_frames": true
        }
    ]
}