NUTabs
Adds ability to open job postings from NUworks in a new tab.
Hvad er NUTabs?
NUTabs er en Chrome-udvidelse udviklet af vishalramesh50, og dens hovedfunktion er "Adds ability to open job postings from NUworks in a new tab.".
Udvidelsesskærmbilleder
Download NUTabs-udvidelses-CRX-fil
Download NUTabs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
Officiel URL | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
Beskrivelse | Adds ability to open job postings from NUworks in a new tab. |
Filstørrelse | 152 KB |
Antal Installationer | 152 |
Nuværende Version | 0.1.3 |
Senest Opdateret | 2021-05-10 |
Udgivelsesdato | 2020-10-26 |
Bedømmelse | 4.00/5 Samlet 2 Bedømmelser |
Udvikler | vishalramesh50 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/VishalRamesh50/NUTabs/ |
Hjælpeside-URL | https://github.com/VishalRamesh50/NUTabs/issues |
Understøttede Sprog | 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\/*" ] } |