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\/*" ] } |