RecruiterExtension
This is a sample extension that works to help recruiting
Hvad er RecruiterExtension?
RecruiterExtension er en Chrome-udvidelse udviklet af suket.s16, og dens hovedfunktion er "This is a sample extension that works to help recruiting".
Udvidelsesskærmbilleder
Download RecruiterExtension-udvidelses-CRX-fil
Download RecruiterExtension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
RecruiterPlus aims to automate the recruiting practice. By integrating with Linkedin XRay, this chrome extension provides high quality and accurate recommendations for people one should reach out to in order to get their next big job. Features - Automatically find potential future connections for a role - Have personalized search results based on your experience - Completely Free
Grundlæggende oplysninger om udvidelsen
Navn | RecruiterExtension |
ID | gpeeahfkpkinldndkiihnjgpegiccgcc |
Officiel URL | https://chromewebstore.google.com/detail/recruiterextension/gpeeahfkpkinldndkiihnjgpegiccgcc |
Beskrivelse | This is a sample extension that works to help recruiting |
Filstørrelse | 270 KB |
Antal Installationer | 24 |
Nuværende Version | 5.0.4 |
Senest Opdateret | 2023-03-02 |
Udgivelsesdato | 2023-03-01 |
Udvikler | suket.s16 |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "This is a sample extension that works to help recruiting", "version": "5.0.4", "manifest_version": 3, "name": "RecruiterExtension", "options_page": "options.html", "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ], "matches": [] } ] } |