NUTabs

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

NUTabs क्या है?

NUTabs vishalramesh50 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds ability to open job postings from NUworks in a new tab."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NUTabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
सहायता पृष्ठ 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\/*"
    ]
}