Upwork Scraper

Scrape freelancers information from upwork search results

Что такое Upwork Scraper?

Upwork Scraper - это расширение Chrome, разработанное AV Tech Labs, и его основная функция - "Scrape freelancers information from upwork search results".

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

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

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

                        Scrape freelancers details from upwork.com browse freelancers page to csv.                    

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

Название Upwork Scraper Upwork Scraper
ID jndgbjhabmbokffhahepelnopelpaljp
Официальный URL https://chrome.google.com/webstore/detail/upwork-scraper/jndgbjhabmbokffhahepelnopelpaljp
Описание Scrape freelancers information from upwork search results
Размер файла 4.13 KB
Количество установок 47
Текущая Версия 1.1
Последнее Обновление 2016-07-10
Дата публикации 2016-07-10
Разработчик AV Tech Labs
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Upwork Scraper",
    "description": "Scrape freelancers information from upwork search results",
    "version": "1.1",
    "author": "Adhithyan Vijayakumar",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.upwork.com\/o\/profiles\/browse\/*"
            ],
            "js": [
                "scripts\/scraper.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "idle",
        "storage",
        "tabCapture",
        "tabs",
        "downloads",
        "https:\/\/www.upwork.com\/*"
    ]
}