Scrapia

Scrapia helps you extract useful data from LinkedIn.

Scrapia란 무엇입니까?

Scrapia은(는) contact에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scrapia helps you extract useful data from LinkedIn."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Scrapia 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Scrapia is a tool that extracts your leads from LinkedIn Sales.
This extension is needed to get your LinkedIn authentification cookie so we can process your request on our side.                    

확장 프로그램 기본 정보

이름 Scrapia Scrapia
ID bkabokojjojidgdegpoongofpcegholj
공식 URL https://chromewebstore.google.com/detail/scrapia/bkabokojjojidgdegpoongofpcegholj
설명 Scrapia helps you extract useful data from LinkedIn.
파일 크기 8.01 KB
설치 횟수 163
현재 버전 1.0
최근 업데이트 2023-07-07
출시 날짜 2023-07-07
개발자 contact
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://scrapia.io
개인정보 보호 정책 페이지 URL https://www.scrapia.io/privacy_policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scrapia",
    "version": "1.0",
    "description": "Scrapia helps you extract useful data from LinkedIn.",
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/localhost:5173\/*",
                "https:\/\/*.scrapia.io\/*",
                "https:\/\/scrapia.io\/*",
                "https:\/\/www.linkedin.com\/sales\/*",
                "https:\/\/linkedin.com\/sales\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.linkedin.com\/sales\/*",
        "https:\/\/linkedin.com\/sales\/*"
    ],
    "permissions": [
        "cookies",
        "activeTab",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "icon.png"
    }
}