H1B Sponsor Checker

Find out whether any job opening offers H1B sponsorship.

H1B Sponsor Checker là gì?

H1B Sponsor Checker là một tiện ích mở rộng Chrome được phát triển bởi https://sponsorchecker.com, và tính năng chính của nó là "Find out whether any job opening offers H1B sponsorship.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng H1B Sponsor Checker

Tải xuống các tệp mở rộng H1B Sponsor Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Make your job search a smart search.
Using verified sources and relying on the community, this H1B wizard tool will save you very valuable hours!
----------------------------------------------------------------------------------------------

v1.8 updates
> Extension usage trains an ML model to improve prediction accuracy.
> Compatible with Indeed
----------------------------------------------------------------------------------------------

FEATURES
> Looks up the company to see whether they sponsored any employees in the past.
> Currently exclusive to LinkedIn and Indeed
> Provides additional H1B information by clicking the extension's green or red bubbles (badges).
----------------------------------------------------------------------------------------------

We wish you the best in your job search.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên H1B Sponsor Checker H1B Sponsor Checker
ID mcnljenmincmifienefinhkgkbiicccp
URL Chính Thức https://chromewebstore.google.com/detail/h1b-sponsor-checker/mcnljenmincmifienefinhkgkbiicccp
Mô tả Find out whether any job opening offers H1B sponsorship.
Kích Thước Tệp 73.8 KB
Số Lần Cài Đặt 1,234
Phiên Bản Hiện Tại 1.9.1
Cập Nhật Lần Cuối 2023-09-27
Ngày Phát Hành 2022-12-03
Đánh Giá 4.57/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://sponsorchecker.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.sponsorchecker.com
URL Trang Trợ Giúp https://github.com/pakitow/h1b-sponsor-check/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "H1B Sponsor Checker",
    "description": "Find out whether any job opening offers H1B sponsorship.",
    "version": "1.9.1",
    "manifest_version": 3,
    "icons": {
        "128": "images\/icon-128.png",
        "96": "images\/icon-96.png",
        "48": "images\/icon-48.png",
        "32": "images\/icon-32.png",
        "16": "images\/icon-16.png"
    },
    "action": {
        "default_icon": {
            "128": "images\/icon-128.png",
            "96": "images\/icon-96.png",
            "48": "images\/icon-48.png",
            "32": "images\/icon-32.png",
            "16": "images\/icon-16.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.linkedin.com\/jobs\/*",
        "https:\/\/www.indeed.com\/jobs*",
        "https:\/\/www.indeed.com\/cmp\/*\/jobs*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/jobs\/*",
                "https:\/\/www.indeed.com\/cmp\/*\/jobs*",
                "https:\/\/www.indeed.com\/jobs*"
            ],
            "js": [
                "modules\/contents\/operations\/validation.js",
                "mainContent.js",
                "modules\/contents\/parsingWorker.js",
                "modules\/badges\/position.js",
                "modules\/badges\/company.js",
                "modules\/popup\/script\/loading.js",
                "modules\/popup\/script\/main.js",
                "modules\/contents\/messaging.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/www.indeed.com\/jobs*"
            ],
            "js": [
                "modules\/contents\/page.js",
                "modules\/contents\/indeed\/listing.js",
                "modules\/contents\/indeed\/pages\/jobsearch.js",
                "modules\/contents\/indeed\/indeed.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/www.indeed.com\/cmp\/*\/jobs*"
            ],
            "js": [
                "modules\/contents\/page.js",
                "modules\/contents\/indeed\/pages\/companysearch.js",
                "modules\/contents\/indeed\/indeed.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "modules\/popup\/html\/container.html",
                "modules\/popup\/html\/loading.css",
                "modules\/popup\/html\/loading.html",
                "modules\/popup\/html\/buttons\/closeBtn.html",
                "modules\/popup\/html\/text\/summary.html",
                "modules\/popup\/html\/buttons\/donateBtn.html",
                "modules\/popup\/html\/buttons\/feedbackBtn.html",
                "modules\/popup\/html\/buttons\/refuseBtn.html",
                "modules\/popup\/html\/buttons\/returnBtn.html"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*",
                "https:\/\/www.indeed.com\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}