NUTabs

Adds ability to open job postings from NUworks in a new tab.

O que é NUTabs?

NUTabs é uma extensão do Chrome desenvolvida por vishalramesh50, e sua principal característica é "Adds ability to open job postings from NUworks in a new tab.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão NUTabs

Baixe arquivos de extensão NUTabs 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 allows users to open job postings in a new tab and improve your quality of life when comparing jobs or just applying to many at once. You can't normally open job postings in new tabs, so this extension allows you to do so.                    

Informações Básicas da Extensão

Nome NUTabs NUTabs
ID phcefmljbehmneoegeokgmaboiklbnnf
URL Oficial https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf
Descrição Adds ability to open job postings from NUworks in a new tab.
Tamanho do Arquivo 152 KB
Contagem de Instalações 152
Versão Atual 0.1.3
Última Atualização 2021-05-10
Data de Publicação 2020-10-26
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor vishalramesh50
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/VishalRamesh50/NUTabs/
URL da Página de Ajuda https://github.com/VishalRamesh50/NUTabs/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NUTabs",
    "version": "0.1.3",
    "description": "Adds ability to open job postings from NUworks in a new tab.",
    "icons": {
        "512": "icons\/new-tab.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/northeastern-csm.symplicity.com\/students\/app\/jobs\/*"
            ],
            "js": [
                "jobTabs.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "update_url": "https:\/\/raw.githubusercontent.com\/VishalRamesh50\/NUTabs\/master\/updates.json"
        }
    },
    "permissions": [
        "webRequest",
        "https:\/\/northeastern-csm.symplicity.com\/students\/app\/jobs\/*"
    ]
}