Vandra JMS
One platform to track, organize and automate your job-search information.
Vandra JMSとは何ですか?
Vandra JMSはhttps://vandra.spaceによって開発されたChromeの拡張機能で、その主な機能は「One platform to track, organize and automate your job-search information.」です。
拡張機能のスクリーンショット
Vandra JMS拡張機能のCRXファイルをダウンロード
Vandra JMS拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } |