NUTabs
Adds ability to open job postings from NUworks in a new tab.
Qu'est-ce que NUTabs ?
NUTabs est une extension Chrome développée par vishalramesh50, et sa fonction principale est "Adds ability to open job postings from NUworks in a new tab.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension NUTabs
Téléchargez les fichiers d'extension NUTabs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
URL Officiel | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
Description | Adds ability to open job postings from NUworks in a new tab. |
Taille du Fichier | 152 KB |
Nombre d'Installations | 152 |
Version Actuelle | 0.1.3 |
Dernière Mise à Jour | 2021-05-10 |
Date de Publication | 2020-10-26 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | vishalramesh50 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/VishalRamesh50/NUTabs/ |
URL de la Page d'Aide | https://github.com/VishalRamesh50/NUTabs/issues |
Langues Prises en Charge | 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\/*" ] } |