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はhttps://jfsl.dkによって開発されたChromeの拡張機能で、その主な機能は「Adds a right-click menu that opens a link in a specified window」です。

拡張機能のスクリーンショット

screenshot
screenshot

Open in specific window拡張機能のCRXファイルをダウンロード

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
Eメール [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
        }
    ]
}