Salary Inspector

This extension will let you see transparent salaries

Was ist Salary Inspector?

Salary Inspector ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension will let you see transparent salaries".

Erweiterungsscreenshots

screenshot
screenshot

Salary Inspector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Salary Inspector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Salary Inspector Salary Inspector
ID ohdgikkchafapofonnddadalgedibpca
Offizielle URL https://chromewebstore.google.com/detail/salary-inspector/ohdgikkchafapofonnddadalgedibpca
Beschreibung This extension will let you see transparent salaries
Dateigröße 51.72 KB
Installationsanzahl 194
Aktuelle Version 1.0.2
Letztes Update 2016-01-22
Veröffentlichungsdatum 2016-01-21
Bewertung 3.00/5 Insgesamt 5 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite http://www.racketracer.com/2016/01/18/linkedin-salary-estimator/
Unterstützte Sprachen 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\/*"
    ]
}