NUTabs
Adds ability to open job postings from NUworks in a new tab.
Was ist NUTabs?
NUTabs ist eine Chrome-Erweiterung, die von vishalramesh50 entwickelt wurde, und ihr Hauptmerkmal ist "Adds ability to open job postings from NUworks in a new tab.".
Erweiterungsscreenshots
NUTabs-Erweiterungs-CRX-Datei herunterladen
Laden Sie NUTabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
Offizielle URL | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
Beschreibung | Adds ability to open job postings from NUworks in a new tab. |
Dateigröße | 152 KB |
Installationsanzahl | 152 |
Aktuelle Version | 0.1.3 |
Letztes Update | 2021-05-10 |
Veröffentlichungsdatum | 2020-10-26 |
Bewertung | 4.00/5 Insgesamt 2 Bewertungen |
Entwickler | vishalramesh50 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/VishalRamesh50/NUTabs/ |
Hilfeseite URL | https://github.com/VishalRamesh50/NUTabs/issues |
Unterstützte Sprachen | 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\/*" ] } |