Easy Job Application Filler

EJAF is a Chrome extension for Software Developers that saves you time by filling out common job application questions…

Easy Job Application Filler là gì?

Easy Job Application Filler là một tiện ích mở rộng Chrome được phát triển bởi Easy Job Application Filler, và tính năng chính của nó là "EJAF is a Chrome extension for Software Developers that saves you time by filling out common job application questions…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Easy Job Application Filler

Tải xuống các tệp mở rộng Easy Job Application Filler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        EJAF is a Chrome extension for Software Developers that saves you time by filling out common job application questions automagically.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Easy Job Application Filler Easy Job Application Filler
ID oemhgcmnckapgfkclnhpgkmnfheecmgd
URL Chính Thức https://chromewebstore.google.com/detail/easy-job-application-fill/oemhgcmnckapgfkclnhpgkmnfheecmgd
Mô tả EJAF is a Chrome extension for Software Developers that saves you time by filling out common job application questions…
Kích Thước Tệp 59.54 KB
Số Lần Cài Đặt 133
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2020-09-21
Ngày Phát Hành 2020-09-20
Nhà Phát Triển Easy Job Application Filler
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://saasbase.dev/products/easy-job-application-filler/
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Job Application Filler",
    "version": "0.2",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/jobs.lever.co\/shopify\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/data.js",
                "companies\/shopify.js"
            ]
        },
        {
            "matches": [
                "https:\/\/careers.twitter.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/data.js",
                "companies\/twitter.js"
            ]
        },
        {
            "matches": [
                "https:\/\/boards.greenhouse.io\/airtable\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/data.js",
                "companies\/airtable.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.dropbox.com\/jobs\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/data.js",
                "companies\/dropbox.js"
            ]
        },
        {
            "matches": [
                "https:\/\/stripe.com\/jobs\/listing\/*\/apply"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/data.js",
                "embeds\/greenhouse.js"
            ]
        },
        {
            "matches": [
                "https:\/\/boards.greenhouse.io\/embed\/job_app?for=stripe*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/data.js",
                "companies\/stripe.js"
            ]
        },
        {
            "matches": [
                "https:\/\/careers.robinhood.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/data.js",
                "embeds\/greenhouse.js"
            ]
        },
        {
            "matches": [
                "https:\/\/boards.greenhouse.io\/embed\/job_app?for=robinhood*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/data.js",
                "companies\/robinhood.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "favicon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "data.json"
    ],
    "permissions": [
        "storage"
    ]
}