Open link in foreground tab

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

O que é Open link in foreground tab?

Open link in foreground tab é uma extensão do Chrome desenvolvida por http://mohamedmansour.com, e sua principal característica é "Adds a context menu to open a link in a new foreground tab.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Open link in foreground tab

Baixe arquivos de extensão Open link in foreground tab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Open link in foreground tab Open link in foreground tab
ID ofbafcaeafjchlcknlmcgaijglnkdnja
URL Oficial https://chrome.google.com/webstore/detail/open-link-in-foreground-t/ofbafcaeafjchlcknlmcgaijglnkdnja
Descrição Adds a context menu to open a link in a new foreground tab.
Tamanho do Arquivo 13.32 KB
Contagem de Instalações 762
Versão Atual 1.1.0
Última Atualização 2018-07-02
Data de Publicação 2018-07-02
Classificação 4.03/5 Total de 40 Avaliações
Desenvolvedor http://mohamedmansour.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://github.com/mohamedmansour/open-link-in-a-foreground-tab-extension
URL da Página de Ajuda http://groups.google.com/group/mohamedmansour-extensions
URL da Página de Política de Privacidade https://mohamedmansour.com/extensions/privacy.html
Idiomas Suportados 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"
    ]
}