Vandra JMS
One platform to track, organize and automate your job-search information.
Qu'est-ce que Vandra JMS ?
Vandra JMS est une extension Chrome développée par https://vandra.space, et sa fonction principale est "One platform to track, organize and automate your job-search information.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Vandra JMS
Téléchargez les fichiers d'extension Vandra JMS 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
Vandra is an online platform that makes your job search hassle free. We're excited to announce our Chrome extension which automates adding job applications to your workspace much easier. Now you don't have to manually add each job you apply to the dreaded spreadsheet! We currently support LinkedIn and Glassdoor for automated applications, and we're adding support for other common applications like Lever, Greenhouse, Handshake, etc. In addition to adding job applications, we have also added a Filler, which will help you access information you need in your applications much easier. Visit https://www.vandra.space for more exciting features that will make your job hunt hassle free! Privacy Policy: https://www.vandra.space/privacy
Informations de Base sur l'Extension
Nom | Vandra JMS |
ID | ophbfnleookjggacmkoegmnmonalmffd |
URL Officiel | https://chromewebstore.google.com/detail/vandra-jms/ophbfnleookjggacmkoegmnmonalmffd |
Description | One platform to track, organize and automate your job-search information. |
Taille du Fichier | 1.81 MB |
Nombre d'Installations | 14 |
Version Actuelle | 0.1.4 |
Dernière Mise à Jour | 2021-06-21 |
Date de Publication | 2020-09-02 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://vandra.space |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.vandra-jms.com |
URL de la Page d'Aide | https://www.vandra-jms.com/#comp-kbyr8omlform |
URL de la Page de Politique de Confidentialité | https://www.vandra.space/privacy |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Vandra JMS", "description": "One platform to track, organize and automate your job-search information.", "version": "0.1.4", "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-rt3go06kPN3TjiJNR4lDBSs+9b3ymqXMbi4JT7MA89E='", "permissions": [ "storage", "notifications", "https:\/\/vandra-1621215709768.azurewebsites.net\/api\/*", "https:\/\/logo.clearbit.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.glassdoor.com\/Job\/*" ], "js": [ "glassdoor_content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/jobs.lever.co\/*" ], "js": [ "lever_content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/boards.greenhouse.io\/*" ], "js": [ "greenhouse_content.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "index.html", "default_title": "Open the popup" }, "icons": { "16": "vandra192.png", "48": "vandra192.png", "128": "vandra192.png" } } |