Linkedin Profile Scraper

A chrome extension to scrap linkedin profiles

Τι είναι το Linkedin Profile Scraper;

Το Linkedin Profile Scraper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ScrapAba, και η κύρια λειτουργία του είναι "A chrome extension to scrap linkedin profiles".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Linkedin Profile Scraper

Λήψη αρχείων επέκτασης Linkedin Profile Scraper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ScrapAba || Get into any linkedin profile and collect profile details

Features😍:
1.) Download📥 the list of scraped profiles as CSV format.
2.) Download📥 the list of linkedin profiles by search as JSON format.
3.) Download📥 the posts belong to particular user/company profile as JSON format.

How to use?🤔
1.) How to scrap Profile details:
      a.) Navigate to any user profile and see the details that you want. (Eg: Go inside the list of skills, experiences, click on the contact info.)
      b.) Then click "Scrap Profile"

2.) Download📥 the list of scraped profiles as CSV format:
      a.) Scrap atleast 1 profile by folowing step 1 then click "Export Profiles" button.

3.) Download📥 the list of linkedin profiles by search as JSON format:
     a.) Search any keyword in the linkedin header bar.
     b.) Filter by people
     c.) Click "Export Profiles"

4.) Download📥 the posts belong to particular user profile as JSON format:
    a.) Navigate to list of Posts screen(It might be user posts or company posts).
    b.) Scroll down to see the posts as much as you want.
    c.) Click "Export Posts"

Note📝:
    1.) It will work for individual profile and company profiles.
    2.) There are 2 "Export Profiles" here, one is for Export as CSV for list of profiles that you scraped, the other one is for Export as JSON for profile search results.
    3.) As of now the details are minutiae, If you wish to extent the details please feel free to contact us.


This extension has been developed as a result of a personal experiment.
Kindly consider lending your support for your individual needs.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Linkedin Profile Scraper Linkedin Profile Scraper
ID emjoanbpnfpodmcmjlchkogclpkkhodb
Επίσημο URL https://chromewebstore.google.com/detail/linkedin-profile-scraper/emjoanbpnfpodmcmjlchkogclpkkhodb
Περιγραφή A chrome extension to scrap linkedin profiles
Μέγεθος Αρχείου 583 KB
Αριθμός Εγκαταστάσεων 939
Τρέχουσα Έκδοση 2.3.9
Τελευταία Ενημέρωση 2024-02-04
Ημερομηνία Δημοσίευσης 2023-08-13
Αξιολόγηση 4.78/5 Συνολικά 18 Αξιολογήσεις
Προγραμματιστής ScrapAba
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.shinnedhawks.com/privacy-policy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Linkedin Profile Scraper",
    "version": "2.3.9",
    "description": "A chrome extension to scrap linkedin profiles",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": [],
    "icons": {
        "128": "scrapaba.png"
    },
    "permissions": [
        "tabs",
        "cookies",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/www.linkedin.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "contentStyle.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentStyle.css",
                "scrapaba.png",
                "right-arrow.png",
                "left-arrow.png",
                "assets\/*.png",
                "close.png",
                "linkedin-button.png",
                "power-off.png",
                "fonts\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                ""
            ]
        }
    ]
}