NUTabs

Adds ability to open job postings from NUworks in a new tab.

什么是NUTabs?

NUTabs是由vishalramesh50开发的Chrome扩展程序,该扩展的主要功能是“Adds ability to open job postings from NUworks in a new tab.”。

扩展截图

screenshot
screenshot

下载NUTabs扩展crx文件

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