NUTabs
Adds ability to open job postings from NUworks in a new tab.
What is NUTabs?
NUTabs is a Chrome extension developed by vishalramesh50, and its main feature is "Adds ability to open job postings from NUworks in a new tab.".
Extension Screenshots
Download NUTabs Extension CRX File
Download NUTabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
Official URL | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
Description | Adds ability to open job postings from NUworks in a new tab. |
File Size | 152 KB |
Installation Count | 152 |
Current Version | 0.1.3 |
Last Updated | 2021-05-10 |
Publish Date | 2020-10-26 |
Rating | 4.00/5 Total 2 Ratings |
Developer | vishalramesh50 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/VishalRamesh50/NUTabs/ |
Help Page URL | https://github.com/VishalRamesh50/NUTabs/issues |
Supported Languages | 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\/*" ] } |