HR helper

Linkedin private notes

Was ist HR helper?

HR helper ist eine Chrome-Erweiterung, die von RomanistHere entwickelt wurde, und ihr Hauptmerkmal ist "Linkedin private notes".

Erweiterungsscreenshots

screenshot
screenshot

HR helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie HR helper-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

                        Testing stage. Free and open-source. 

Available right now:
- mark profile
- add note to profile
- quick editable answers in the messages thread
- search within saved and marked profiles
- save with Ctrl + Enter

Future plans:
- synchronization between all the users in your company (paid option)                    

Grundlegende Informationen zur Erweiterung

Name HR helper HR helper
ID legoehlgnimpdcopbolhlgcfhanhmckh
Offizielle URL https://chromewebstore.google.com/detail/hr-helper/legoehlgnimpdcopbolhlgcfhanhmckh
Beschreibung Linkedin private notes
Dateigröße 29.24 KB
Installationsanzahl 28
Aktuelle Version 0.1.16
Letztes Update 2020-12-29
Veröffentlichungsdatum 2020-11-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler RomanistHere
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://romanisthere.github.io/apps/policy
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HR helper",
    "short_name": "HR helper - Linkedin\u2122 private notes",
    "version": "0.1.16",
    "description": "Linkedin private notes",
    "permissions": [
        "https:\/\/www.linkedin.com\/*",
        "storage",
        "unlimitedStorage",
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "js": [
                "messages\/messages.js",
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "background": {
        "page": "background\/background.html"
    },
    "page_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "HR-helper - Click to open",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2
}