Factorial Sourcing

Import candidates easily from different websites such as LinkedIn into your job openings in Factorial.

Что такое Factorial Sourcing?

Factorial Sourcing - это расширение Chrome, разработанное Factorial HR, и его основная функция - "Import candidates easily from different websites such as LinkedIn into your job openings in Factorial.".

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

screenshot
screenshot

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

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

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

                        Sourcing candidates is a very time-consuming method to acquire candidates, but it is also key to get the best talent. This extension enables Factorial clients to make sourcing straightforward by allowing to import candidate profiles from LinkedIn and other popular sites.

- Assign candidates to a specific job opening and phase
- Gather candidate contact information                    

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

Название Factorial Sourcing Factorial Sourcing
ID ceaieellonhoiaielfdbelnpblojpecd
Официальный URL https://chromewebstore.google.com/detail/factorial-sourcing/ceaieellonhoiaielfdbelnpblojpecd
Описание Import candidates easily from different websites such as LinkedIn into your job openings in Factorial.
Размер файла 20.68 KB
Количество установок 160
Текущая Версия 0.1.1
Последнее Обновление 2023-01-14
Дата публикации 2023-01-13
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Factorial HR
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://factorialhr.com/
URL страницы помощи https://help.factorialhr.com/
URL страницы политики конфиденциальности https://factorialhr.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Factorial Sourcing",
    "description": "Import candidates easily from different websites such as LinkedIn into your job openings in Factorial.",
    "version": "0.1.1",
    "minimum_chrome_version": "108",
    "action": {
        "default_icon": {
            "16": "images\/logo-16.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        }
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "images\/logo-16.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/tab.js"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ]
        },
        {
            "js": [
                "js\/linkedin.js"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ]
        },
        {
            "js": [
                "js\/linkedin_talent.js"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/talent\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "sidebar.html",
                "js\/sidebar.js",
                "css\/sidebar.css",
                "css\/tab.css"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+Shift+F",
                "mac": "Alt+Shift+F",
                "chromeos": "Alt+Shift+F",
                "linux": "Alt+Shift+F"
            }
        }
    },
    "permissions": [
        "cookies",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "https:\/\/app.factorialhr.com\/",
        "https:\/\/api.factorialhr.com\/"
    ]
}