Salary Inspector

This extension will let you see transparent salaries

Salary Inspector là gì?

Salary Inspector là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension will let you see transparent salaries".

Ả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 Salary Inspector

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

                        This chrome extensions allow users to display estimated salaries next to Linkedin profiles. 

Currently it only supports salaries in the United States as the estimates are from released H1-B data from the government. Estimates are also taken from Indeed if the company or position cannot be matched to the database. 

If something isn't working or you have new ideas for features, please email me at jayofeng(at)gmail(dot)com

Happy profile watching!

Edit 1.0.2: Allows the popup to give an explanation for how to use the app.
Gives error messages if the chrome extension cannot match the salaries                    

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

Tên Salary Inspector Salary Inspector
ID ohdgikkchafapofonnddadalgedibpca
URL Chính Thức https://chromewebstore.google.com/detail/salary-inspector/ohdgikkchafapofonnddadalgedibpca
Mô tả This extension will let you see transparent salaries
Kích Thước Tệp 51.72 KB
Số Lần Cài Đặt 194
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2016-01-22
Ngày Phát Hành 2016-01-21
Đánh Giá 3.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng http://www.racketracer.com/2016/01/18/linkedin-salary-estimator/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salary Inspector",
    "description": "This extension will let you see transparent salaries",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.linkedin.com\/*"
    ]
}