Vandra JMS
One platform to track, organize and automate your job-search information.
Vandra JMS क्या है?
Vandra JMS https://vandra.space द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "One platform to track, organize and automate your job-search information."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Vandra JMS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | https://www.vandra-jms.com/#comp-kbyr8omlform |
गोपनीयता नीति पृष्ठ URL | 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" } } |