RecruiterExtension

This is a sample extension that works to help recruiting

Что такое RecruiterExtension?

RecruiterExtension - это расширение Chrome, разработанное suket.s16, и его основная функция - "This is a sample extension that works to help recruiting".

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

screenshot

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

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

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

                        RecruiterPlus aims to automate the recruiting practice. By integrating with Linkedin XRay, this chrome extension provides high quality and accurate recommendations for people one should reach out to in order to get their next big job. 

Features
 - Automatically find potential future connections for a role
 - Have personalized search results based on your experience 
 - Completely Free                    

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

Название RecruiterExtension RecruiterExtension
ID gpeeahfkpkinldndkiihnjgpegiccgcc
Официальный URL https://chromewebstore.google.com/detail/recruiterextension/gpeeahfkpkinldndkiihnjgpegiccgcc
Описание This is a sample extension that works to help recruiting
Размер файла 270 KB
Количество установок 24
Текущая Версия 5.0.4
Последнее Обновление 2023-03-02
Дата публикации 2023-03-01
Разработчик suket.s16
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This is a sample extension that works to help recruiting",
    "version": "5.0.4",
    "manifest_version": 3,
    "name": "RecruiterExtension",
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}