Estim8.ai — shows current salary on Linkedin

This extension shows you compensation package estimates right on Linkedin profiles

Estim8.ai — shows current salary on Linkedin란 무엇입니까?

Estim8.ai — shows current salary on Linkedin은(는) https://estim8.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows you compensation package estimates right on Linkedin profiles"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Estim8.ai — shows current salary on Linkedin 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Estim8.ai Chrome Extension predicts how much a candidate is currently paid when you open his/hers Linkedin public profile. Yes, it’s that easy.

As of the current moment, it works only for Software Engineers in the US*.

Here is what you need to do to start:

1. Install the Extension;
2. Open a Linkedin profile of any Software Engineer in the US;
3. Navigate to Estim8’s tab (on the left side of the screen);
4. That’s it. You’ll see our compensation package details right inside the Linkedin profile.

Our data consists of a combination of publicly listed compensation details and estimates predicted by our proprietary AI model.

*p.s. we are working hard to add other markets and positions                    

확장 프로그램 기본 정보

이름 Estim8.ai — shows current salary on Linkedin Estim8.ai — shows current salary on Linkedin
ID cjhohccbpbkcealndpfanpclfgcekell
공식 URL https://chromewebstore.google.com/detail/estim8ai-%E2%80%94-shows-current/cjhohccbpbkcealndpfanpclfgcekell
설명 This extension shows you compensation package estimates right on Linkedin profiles
파일 크기 131 KB
설치 횟수 138
현재 버전 1.2
최근 업데이트 2022-10-22
출시 날짜 2022-09-06
평점 5.00/5 총 1 개의 평점
개발자 https://estim8.ai
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://estim8.ai/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Estim8.ai \u2014 shows current salary on Linkedin",
    "description": "This extension shows you compensation package estimates right on Linkedin profiles",
    "version": "1.2",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/*.estim8.ai\/*"
    ],
    "default_locale": "en",
    "action": {
        "default_title": "Estim8.ai",
        "default_icon": {
            "19": "images\/icons\/19.png",
            "38": "images\/icons\/38.png"
        }
    },
    "icons": {
        "16": "images\/icons\/16.png",
        "32": "images\/icons\/32.png",
        "48": "images\/icons\/48.png",
        "64": "images\/icons\/64.png",
        "128": "images\/icons\/128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "\/js\/functions.js",
                "\/js\/template.js",
                "\/js\/content.js"
            ]
        },
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*.estim8.ai\/*"
            ],
            "js": [
                "\/js\/estim8.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/*.woff2"
            ],
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ]
        }
    ]
}