Hide Promoted Jobs

Hides promoted job postings on LinkedIn's job search pages.

Hide Promoted Jobs là gì?

Hide Promoted Jobs là một tiện ích mở rộng Chrome được phát triển bởi Fabricio Duarte, và tính năng chính của nó là "Hides promoted job postings on LinkedIn's job search pages.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hide Promoted Jobs

Tải xuống các tệp mở rộng Hide Promoted Jobs 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

                        No more getting distracted by job postings that don't have any of the searched keywords on LinkedIn, enhance the job seeking experience!                    

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

Tên Hide Promoted Jobs Hide Promoted Jobs
ID bmilkimafelnhekidknkamkhkbeciijg
URL Chính Thức https://chromewebstore.google.com/detail/hide-promoted-jobs/bmilkimafelnhekidknkamkhkbeciijg
Mô tả Hides promoted job postings on LinkedIn's job search pages.
Kích Thước Tệp 13.14 KB
Số Lần Cài Đặt 2,128
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2023-02-01
Ngày Phát Hành 2023-01-21
Đánh Giá 4.89/5 Tổng số 19 Đánh Giá
Nhà Phát Triển Fabricio Duarte
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/winterhazel/hide-promoted-jobs
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Promoted Jobs",
    "version": "1.3",
    "description": "Hides promoted job postings on LinkedIn's job search pages.",
    "homepage_url": "https:\/\/github.com\/winterhazel\/hide-promoted-jobs",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Toggle Extension"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "js\/hide.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/langs.json"
            ],
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ]
        }
    ]
}