Work Visa Sponsors Extension

Notifies users of the likelihood for VISA sponsorship while viewing job vacancy listings on popular job boards.

Was ist Work Visa Sponsors Extension?

Work Visa Sponsors Extension ist eine Chrome-Erweiterung, die von https://workvisasponsors.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "Notifies users of the likelihood for VISA sponsorship while viewing job vacancy listings on popular job boards.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Work Visa Sponsors Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Work Visa Sponsors Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Notifies users of the likelihood for UK VISA sponsorship while viewing job vacancy listings on popular job board.

FEATURES
☆ Works on Indeed, Totaljobs, Glassdoor and LinkedIn.
☆ Adds the WorkVisaSponsor Logo to job listings from licensed  UK VISA sponsors. 
☆ Adds the WorkVisaSponsor Logo to job listings from US H1B and Green card sponsors.
☆ Save time as job applications will be made to employers capable of sponsoring work visas.

VERSION 1.4.7 UPDATE
☆ Fixed the issue of extension not working on Indeed due to website update.
☆ Fixed the issue of extension not working on Totaljobs due to website update.                    

Grundlegende Informationen zur Erweiterung

Name Work Visa Sponsors Extension Work Visa Sponsors Extension
ID belhombhbdodpmoadjgljnndhhafbkkf
Offizielle URL https://chromewebstore.google.com/detail/work-visa-sponsors-extens/belhombhbdodpmoadjgljnndhhafbkkf
Beschreibung Notifies users of the likelihood for VISA sponsorship while viewing job vacancy listings on popular job boards.
Dateigröße 6.51 MB
Installationsanzahl 109
Aktuelle Version 1.4.7
Letztes Update 2024-02-12
Veröffentlichungsdatum 2023-09-26
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler https://workvisasponsors.co.uk
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://workvisasponsors.co.uk/
Hilfeseite URL https://workvisasponsors.co.uk/contact
URL der Datenschutzrichtlinien-Seite https://workvisasponsors.co.uk/terms
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Work Visa Sponsors Extension",
    "version": "1.4.7",
    "description": "Notifies users of the likelihood for VISA sponsorship while viewing job vacancy listings on popular job boards.",
    "icons": {
        "48": "assets\/images\/fav.png",
        "128": "assets\/images\/fav.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/workvisasponsors.co.uk\/*",
        "https:\/\/*.indeed.com\/*",
        "https:\/\/*.totaljobs.com\/*",
        "https:\/\/*.glassdoor.com\/*",
        "https:\/\/*.glassdoor.co.uk\/*",
        "https:\/\/*.linkedin.com\/*"
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "action": {
        "default_popup": "html\/popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/jquery-3.6.0.min.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "js\/bootstrap.min.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workvisasponsors.co.uk\/*"
            ],
            "js": [
                "scripts\/core\/subaction.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "scripts\/platforms\/linkedinScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.indeed.com\/*"
            ],
            "js": [
                "scripts\/platforms\/indeedScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.glassdoor.com\/*",
                "https:\/\/*.glassdoor.co.uk\/*"
            ],
            "js": [
                "scripts\/platforms\/glassdoorScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.totaljobs.com\/*"
            ],
            "js": [
                "scripts\/platforms\/totaljobsScript.js"
            ]
        }
    ]
}