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.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة NUTabs

قم بتنزيل ملفات الامتداد NUTabs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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/
عنوان صفحة المساعدة 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\/*"
    ]
}