NUTabs

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

Vad är NUTabs?

NUTabs är en Chrome-tillägg utvecklad av vishalramesh50, och dess huvudfunktion är "Adds ability to open job postings from NUworks in a new tab.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner NUTabs-förlängningens CRX-fil

Ladda ner NUTabs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn NUTabs NUTabs
ID phcefmljbehmneoegeokgmaboiklbnnf
Officiell webbadress https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf
Beskrivning Adds ability to open job postings from NUworks in a new tab.
Filstorlek 152 KB
Antal Installationer 152
Aktuell Version 0.1.3
Senast Uppdaterad 2021-05-10
Publiceringsdatum 2020-10-26
Betyg 4.00/5 Totalt 2 Betyg
Utvecklare vishalramesh50
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/VishalRamesh50/NUTabs/
Hjälpsida URL https://github.com/VishalRamesh50/NUTabs/issues
Stödda Språk 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\/*"
    ]
}