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
官方網址 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\/*"
    ]
}