Crelate Talent Chrome Extension
Uses text from a web page to create a contact record inside of Crelate Talent
Qu'est-ce que Crelate Talent Chrome Extension ?
Crelate Talent Chrome Extension est une extension Chrome développée par https://www.crelate.com, et sa fonction principale est "Uses text from a web page to create a contact record inside of Crelate Talent".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Crelate Talent Chrome Extension
Téléchargez les fichiers d'extension Crelate Talent Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
NEW in 3.10.2 - Minor Bug fixes and improvements NEW in 3.10.1 - Stability Improvements - Fix for "View in Crelate" button - Fix for ability to Enrich new records NEW in 3.10.0 - New records will default to parsing on page entry - Existing records will display current contact record information - LinkedIn pages show Entity status in icon - While a page is parsing (whether while navigating between pages, or opening the extension on an non-LinkedIn page) the icon should be blue with 3 dots. - Additional style tweaks - Bug Fixes NEW in 3.9.8 - If "Allow detected duplicate records to be saved anyway" is enabled, the chrome extension now has an option to save as a new record. - Minor style tweaks and fixes NEW in 3.9.7 - Improved consistency with the contact enrichment experience NEW in 3.9.6 - Fix for visual issue with some fields not showing after enrichment NEW in 3.9.5 - Fix for form loading issue NEW in 3.9.4 - Fix for load issue NEW in 3.9.3 - Fix for field display issues when combined with profile pictures - Fix for extension erroneously indicating it needed an update - Fix for data parsing on multiple successive parses NEW in 3.9.2 - Fix for missing Last Name field NEW in 3.3.1 - Improved default displayed Phone and Email types NEW in 3.3.0 - Update to work with the Release 3.7 (July 2022) release - Add support for 2FA Authenticator app - Improve troubleshooting capability NEW in 3.2.2 - Update to work with the Release 3.6 (March 2022) release NEW in 3.2.1 - Fix for spinning on first login The Crelate Talent Chrome Extension is an extension that can be added to your Google Chrome browser to allow you to import and update contacts directly from webpages without having to manually enter information into Crelate. This allows you to: Have our extension automatically try and find contact information from a webpage you are viewing or from a text selection and return to you a contact form that you can then import into Crelate. The information that is imported can also be used to generate a PDF resume for the Contact. If the parser finds a suitable profile picture on the page, it will attempt to import that as well! When viewing a page that can be identified as an existing contact in the system, update the contact with the information available on the page. 3.2.0 - Updates to support the new Contact Enrichment feature. For more details, please visit: https://www.crelate.com/recruit/contact-data-enrichment 3.1.8 - Bug fixes 3.1.7 - Updated the experience when matching on duplicate contacts to be more clear on what's happening - Added support for Custom Fields - The extension will now remember your settings for "Import profile pictures" and "Auto generate PDF" in the menu 3.1.6 - Fixed a bug that was causing parsing errors with education - Added warning messages when users do not have the permissions to create school or degree records 3.1.5 - Updating our code to take advantage of engineering improvements to improve the performance of this extension - Bug fixes 3.1.4 - Bug Fixes 3.1.3 - Improved performance of the extension - Improved ability to find images on the page 3.1.2 - Improved the extension's ability to find profile pictures on the page 3.1.1 - Fixed an issue affecting Chrome OS users 3.1.0 - Add to List - Add contacts directly to a list that you have access to! - Add to Job filter - The Add to Job input only lists Open Jobs now - Minor typo and bug fixes 3.0.1 - Performance improvements - We now compress the data that we send up to our servers for parsing which should provide a noticeable reduction in parse times. - Various bug fixes 3.0 - Icon Indicator - When visiting a page that Crelate recognizes, the icon will turn green to let you know! - Automatically Generated PDFs - New option to automatically generate a PDF from the parsed contact data - Disable auto-ownership - Ability to disable automatic ownership by creator as a sticky menu setting - Performance Tweaks - A lot of under the hood tweaks to improve performance and parse pages as quickly as possible - Bug Fixes - This release includes a healthy does of bug fixes to keep the extension running smooth! 2.3.3 - Even when no data is parsed, the Current Position, Email, Phone, Address, Website, and Source fields are displayed for easier data entry - Bug Fixes 2.3.2 - Bug fix 2.3.0 - View existing contact information as well as new information from webpages that you visit. - Bug fixes 2.2.0 - New setting to disable profile picture import by default - Bug fixes
Informations de Base sur l'Extension
Nom | Crelate Talent Chrome Extension |
ID | fmklchbkglfcamflgdhlclalanjkhpai |
URL Officiel | https://chromewebstore.google.com/detail/crelate-talent-chrome-ext/fmklchbkglfcamflgdhlclalanjkhpai |
Description | Uses text from a web page to create a contact record inside of Crelate Talent |
Taille du Fichier | 3.48 MB |
Nombre d'Installations | 8,064 |
Version Actuelle | 3.10.2 |
Dernière Mise à Jour | 2023-09-26 |
Date de Publication | 2019-08-27 |
Évaluation | 4.13/5 Total 16 Évaluations |
Développeur | https://www.crelate.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.crelate.com/ |
URL de la Page d'Aide | https://help.crelate.com/en/articles/4120293-using-the-chrome-extension |
URL de la Page de Politique de Confidentialité | https://www.crelate.com/privacy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Crelate Talent Chrome Extension", "short_name": "Crelate", "version": "3.10.2", "description": "Uses text from a web page to create a contact record inside of Crelate Talent", "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Crelate Contact Import Tool" }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "storage", "tabs" ], "background": { "scripts": [ "js\/events.js" ], "persistent": false }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/content.js", "scripts\/jszip.min.js" ] } ], "author": "Crelate Development Team", "web_accessible_resources": [ "sidebar.html" ] } |