NUTabs
Adds ability to open job postings from NUworks in a new tab.
NUTabsคืออะไร?
NUTabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vishalramesh50 และคุณลักษณะหลักของมันคือ "Adds ability to open job postings from NUworks in a new tab."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NUTabs
ดาวน์โหลดไฟล์ส่วนขยาย NUTabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
คำอธิบาย | Adds ability to open job postings from NUworks in a new tab. |
ขนาดไฟล์ | 152 KB |
จำนวนการติดตั้ง | 152 |
เวอร์ชันปัจจุบัน | 0.1.3 |
อัปเดตครั้งล่าสุด | 2021-05-10 |
วันที่เผยแพร่ | 2020-10-26 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | vishalramesh50 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/VishalRamesh50/NUTabs/ |
URL หน้าช่วยเหลือ | https://github.com/VishalRamesh50/NUTabs/issues |
ภาษาที่รองรับ | 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\/*" ] } |