Open in specific window

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

Qu'est-ce que Open in specific window ?

Open in specific window est une extension Chrome développée par https://jfsl.dk, et sa fonction principale est "Adds a right-click menu that opens a link in a specified window".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Open in specific window

Téléchargez les fichiers d'extension Open in specific window au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Open in specific window Open in specific window
ID nkgphogbgnehgdfkpiknbdnjaamlbgmo
URL Officiel https://chromewebstore.google.com/detail/open-in-specific-window/nkgphogbgnehgdfkpiknbdnjaamlbgmo
Description Adds a right-click menu that opens a link in a specified window
Taille du Fichier 104 KB
Nombre d'Installations 1,198
Version Actuelle 1.3.1
Dernière Mise à Jour 2018-07-17
Date de Publication 2018-07-17
Évaluation 3.96/5 Total 27 Évaluations
Développeur https://jfsl.dk
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://jfsl.dk/oisw-intro.php
Langues Prises en Charge 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
        }
    ]
}