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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/*"
    ]
}