Hide Promoted Jobs

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

Hide Promoted Jobs란 무엇입니까?

Hide Promoted Jobs은(는) Fabricio Duarte에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides promoted job postings on LinkedIn's job search pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hide Promoted Jobs 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Hide Promoted Jobs Hide Promoted Jobs
ID bmilkimafelnhekidknkamkhkbeciijg
공식 URL https://chromewebstore.google.com/detail/hide-promoted-jobs/bmilkimafelnhekidknkamkhkbeciijg
설명 Hides promoted job postings on LinkedIn's job search pages.
파일 크기 13.14 KB
설치 횟수 2,128
현재 버전 1.3
최근 업데이트 2023-02-01
출시 날짜 2023-01-21
평점 4.89/5 총 19 개의 평점
개발자 Fabricio Duarte
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/winterhazel/hide-promoted-jobs
지원되는 언어 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\/*"
            ]
        }
    ]
}