NUTabs
Adds ability to open job postings from NUworks in a new tab.
Apa itu NUTabs?
NUTabs adalah ekstensi Chrome yang dikembangkan oleh vishalramesh50, dan fitur utamanya adalah "Adds ability to open job postings from NUworks in a new tab.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi NUTabs
Unduh file ekstensi NUTabs dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
URL Resmi | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
Deskripsi | Adds ability to open job postings from NUworks in a new tab. |
Ukuran File | 152 KB |
Jumlah Instalasi | 152 |
Versi Saat Ini | 0.1.3 |
Terakhir Diperbarui | 2021-05-10 |
Tanggal Publikasi | 2020-10-26 |
Penilaian | 4.00/5 Total 2 Penilaian |
Pengembang | vishalramesh50 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/VishalRamesh50/NUTabs/ |
URL Halaman Bantuan | https://github.com/VishalRamesh50/NUTabs/issues |
Bahasa yang Didukung | 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\/*" ] } |