NUTabs
Adds ability to open job postings from NUworks in a new tab.
Wat is NUTabs?
NUTabs is een Chrome-extensie ontwikkeld door vishalramesh50, en de belangrijkste functie is "Adds ability to open job postings from NUworks in a new tab.".
Extensie Screenshots
Download het CRX-bestand van de extensie NUTabs
Download NUTabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
Officiële URL | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
Beschrijving | Adds ability to open job postings from NUworks in a new tab. |
Bestandsgrootte | 152 KB |
Aantal Installaties | 152 |
Huidige Versie | 0.1.3 |
Laatst Bijgewerkt | 2021-05-10 |
Publicatiedatum | 2020-10-26 |
Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | vishalramesh50 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/VishalRamesh50/NUTabs/ |
Help Pagina-URL | https://github.com/VishalRamesh50/NUTabs/issues |
Ondersteunde Talen | 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\/*" ] } |