Open in specific window

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

Open in specific window là gì?

Open in specific window là một tiện ích mở rộng Chrome được phát triển bởi https://jfsl.dk, và tính năng chính của nó là "Adds a right-click menu that opens a link in a specified window".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Open in specific window

Tải xuống các tệp mở rộng Open in specific window dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Open in specific window Open in specific window
ID nkgphogbgnehgdfkpiknbdnjaamlbgmo
URL Chính Thức https://chromewebstore.google.com/detail/open-in-specific-window/nkgphogbgnehgdfkpiknbdnjaamlbgmo
Mô tả Adds a right-click menu that opens a link in a specified window
Kích Thước Tệp 104 KB
Số Lần Cài Đặt 1,198
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2018-07-17
Ngày Phát Hành 2018-07-17
Đánh Giá 3.96/5 Tổng số 27 Đánh Giá
Nhà Phát Triển https://jfsl.dk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://jfsl.dk/oisw-intro.php
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}