Vandra JMS
One platform to track, organize and automate your job-search information.
ما هو Vandra JMS؟
Vandra JMS هو إضافة Chrome تم تطويرها بواسطة https://vandra.space، والميزة الرئيسية لها هي "One platform to track, organize and automate your job-search information.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Vandra JMS
قم بتنزيل ملفات الامتداد Vandra JMS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | Vandra JMS |
ID | ophbfnleookjggacmkoegmnmonalmffd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/vandra-jms/ophbfnleookjggacmkoegmnmonalmffd |
الوصف | One platform to track, organize and automate your job-search information. |
حجم الملف | 1.81 MB |
عدد التثبيتات | 14 |
النسخة الحالية | 0.1.4 |
آخر تحديث | 2021-06-21 |
تاريخ النشر | 2020-09-02 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | https://vandra.space |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.vandra-jms.com |
عنوان صفحة المساعدة | https://www.vandra-jms.com/#comp-kbyr8omlform |
عنوان صفحة سياسة الخصوصية | https://www.vandra.space/privacy |
اللغات المدعومة | 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" } } |