Open in specific window

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

Was ist Open in specific window?

Open in specific window ist eine Chrome-Erweiterung, die von https://jfsl.dk entwickelt wurde, und ihr Hauptmerkmal ist "Adds a right-click menu that opens a link in a specified window".

Erweiterungsscreenshots

screenshot
screenshot

Open in specific window-Erweiterungs-CRX-Datei herunterladen

Laden Sie Open in specific window-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Open in specific window Open in specific window
ID nkgphogbgnehgdfkpiknbdnjaamlbgmo
Offizielle URL https://chromewebstore.google.com/detail/open-in-specific-window/nkgphogbgnehgdfkpiknbdnjaamlbgmo
Beschreibung Adds a right-click menu that opens a link in a specified window
Dateigröße 104 KB
Installationsanzahl 1,198
Aktuelle Version 1.3.1
Letztes Update 2018-07-17
Veröffentlichungsdatum 2018-07-17
Bewertung 3.96/5 Insgesamt 27 Bewertungen
Entwickler https://jfsl.dk
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://jfsl.dk/oisw-intro.php
Unterstützte Sprachen 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
        }
    ]
}