NUTabs
Adds ability to open job postings from NUworks in a new tab.
Cos'è NUTabs?
NUTabs è un'estensione di Chrome sviluppata da vishalramesh50, e la sua funzione principale è "Adds ability to open job postings from NUworks in a new tab.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NUTabs
Scarica i file di estensione NUTabs 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 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.
Informazioni di Base sull'Estensione
Nome | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
URL Ufficiale | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
Descrizione | Adds ability to open job postings from NUworks in a new tab. |
Dimensione del File | 152 KB |
Conteggio Installazioni | 152 |
Versione Corrente | 0.1.3 |
Ultimo Aggiornamento | 2021-05-10 |
Data di Pubblicazione | 2020-10-26 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | vishalramesh50 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/VishalRamesh50/NUTabs/ |
URL della Pagina di Aiuto | https://github.com/VishalRamesh50/NUTabs/issues |
Lingue Supportate | 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\/*" ] } |