Open in specific window

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

Wat is Open in specific window?

Open in specific window is een Chrome-extensie ontwikkeld door https://jfsl.dk, en de belangrijkste functie is "Adds a right-click menu that opens a link in a specified window".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Open in specific window

Download Open in specific window-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Open in specific window Open in specific window
ID nkgphogbgnehgdfkpiknbdnjaamlbgmo
Officiële URL https://chromewebstore.google.com/detail/open-in-specific-window/nkgphogbgnehgdfkpiknbdnjaamlbgmo
Beschrijving Adds a right-click menu that opens a link in a specified window
Bestandsgrootte 104 KB
Aantal Installaties 1,198
Huidige Versie 1.3.1
Laatst Bijgewerkt 2018-07-17
Publicatiedatum 2018-07-17
Beoordeling 3.96/5 Totaal 27 Beoordelingen
Ontwikkelaar https://jfsl.dk
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://jfsl.dk/oisw-intro.php
Ondersteunde Talen 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
        }
    ]
}