Open link in foreground tab

Adds a context menu to open a link in a new foreground tab.

Cos'è Open link in foreground tab?

Open link in foreground tab è un'estensione di Chrome sviluppata da http://mohamedmansour.com, e la sua funzione principale è "Adds a context menu to open a link in a new foreground tab.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Open link in foreground tab

Scarica i file di estensione Open link in foreground tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension adds a context menu that allows you to open a link in a new foreground tab. 

FOLLOW ME ON +: https://plus.google.com/116805285176805120365/about
SOURCE CODE: http://goo.gl/Seob (GitHub)

As a feature bonus, when you close a foreground tab, instead of picking a random tab to close, it closes the tab that opened the foreground. This imitates the same functionality of 'Open new tab'. 

Keyboard Shortcut:  Ctrl + Shift + 

Donations
---------------------------
 - Many people have asked me for donations, but I rather code for fun and releasing extensions that the users want. Everything I do is OpenSource and I hope the source that I Open Source will intrigue others to Software Development. 
 - I decided to place a PayPal donation link here, so if you would like to donate to support my Open Source development, you can visit the PayPal donations link here http://goo.gl/Mr2vX
 - With the money I receive I will be donating to many charities.                    

Informazioni di Base sull'Estensione

Nome Open link in foreground tab Open link in foreground tab
ID ofbafcaeafjchlcknlmcgaijglnkdnja
URL Ufficiale https://chrome.google.com/webstore/detail/open-link-in-foreground-t/ofbafcaeafjchlcknlmcgaijglnkdnja
Descrizione Adds a context menu to open a link in a new foreground tab.
Dimensione del File 13.32 KB
Conteggio Installazioni 762
Versione Corrente 1.1.0
Ultimo Aggiornamento 2018-07-02
Data di Pubblicazione 2018-07-02
Valutazione 4.03/5 Totale 40 Valutazioni
Sviluppatore http://mohamedmansour.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/mohamedmansour/open-link-in-a-foreground-tab-extension
URL della Pagina di Aiuto http://groups.google.com/group/mohamedmansour-extensions
URL della Pagina della Politica sulla Privacy https://mohamedmansour.com/extensions/privacy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open link in foreground tab",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Adds a context menu to open a link in a new foreground tab.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ]
}