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.”。

扩展截图

screenshot

下载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 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"
    }
}