NUTabs

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

Co to jest NUTabs?

NUTabs to rozszerzenie Chrome opracowane przez vishalramesh50, a jego główną funkcją jest „Adds ability to open job postings from NUworks in a new tab.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia NUTabs

Pobierz pliki rozszerzeń NUTabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa NUTabs NUTabs
ID phcefmljbehmneoegeokgmaboiklbnnf
Oficjalny URL https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf
Opis Adds ability to open job postings from NUworks in a new tab.
Rozmiar pliku 152 KB
Liczba instalacji 152
Aktualna Wersja 0.1.3
Ostatnia Aktualizacja 2021-05-10
Data Publikacji 2020-10-26
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper vishalramesh50
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/VishalRamesh50/NUTabs/
Adres URL Strony Pomocy https://github.com/VishalRamesh50/NUTabs/issues
Obsługiwane Języki 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\/*"
    ]
}