NUTabs
Adds ability to open job postings from NUworks in a new tab.
NUTabs là gì?
NUTabs là một tiện ích mở rộng Chrome được phát triển bởi vishalramesh50, và tính năng chính của nó là "Adds ability to open job postings from NUworks in a new tab.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NUTabs
Tải xuống các tệp mở rộng NUTabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NUTabs |
ID | phcefmljbehmneoegeokgmaboiklbnnf |
URL Chính Thức | https://chromewebstore.google.com/detail/nutabs/phcefmljbehmneoegeokgmaboiklbnnf |
Mô tả | Adds ability to open job postings from NUworks in a new tab. |
Kích Thước Tệp | 152 KB |
Số Lần Cài Đặt | 152 |
Phiên Bản Hiện Tại | 0.1.3 |
Cập Nhật Lần Cuối | 2021-05-10 |
Ngày Phát Hành | 2020-10-26 |
Đánh Giá | 4.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | vishalramesh50 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/VishalRamesh50/NUTabs/ |
URL Trang Trợ Giúp | https://github.com/VishalRamesh50/NUTabs/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |