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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}