Jobtoolz Sourcing

Auto-extract all information from a Linkedin profile and import it right into your Jobtoolz account.

Что такое Jobtoolz Sourcing?

Jobtoolz Sourcing - это расширение Chrome, разработанное Jobtoolz, и его основная функция - "Auto-extract all information from a Linkedin profile and import it right into your Jobtoolz account.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Jobtoolz Sourcing

Скачайте файлы расширений Jobtoolz Sourcing в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Capture candidates easily from Linkedin. With the Jobtoolz sourcing extension, you can auto-extract all information from a Linkedin profile and import it right into your Jobtoolz account. 

It’s incredibly simple. Just browse on Linkedin to a potential candidate’s profile, click the Jobtoolz logo next to the person’s name and all relevant information of this candidate will be auto-extracted. You’ll only need to import the candidate into the right vacancy in your Jobtoolz account.                    

Основная информация о расширении

Название Jobtoolz Sourcing Jobtoolz Sourcing
ID jefhkjnnfaiicaaonfjkibcipeabocck
Официальный URL https://chromewebstore.google.com/detail/jobtoolz-sourcing/jefhkjnnfaiicaaonfjkibcipeabocck
Описание Auto-extract all information from a Linkedin profile and import it right into your Jobtoolz account.
Размер файла 42.85 KB
Количество установок 88
Текущая Версия 0.2.4
Последнее Обновление 2023-12-18
Дата публикации 2021-04-26
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Jobtoolz
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://jobtoolz.com
URL страницы помощи https://jobtoolz.com/contact
URL страницы политики конфиденциальности https://jobtoolz.com/en/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jobtoolz Sourcing",
    "description": "Auto-extract all information from a Linkedin profile and import it right into your Jobtoolz account.",
    "version": "0.2.4",
    "browser_action": [],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options\/index.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "popup\/index.html",
        "assets\/icon.png"
    ],
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    }
}