Scrapia
Scrapia helps you extract useful data from LinkedIn.
什么是Scrapia?
Scrapia是由contact开发的Chrome扩展程序,该扩展的主要功能是“Scrapia helps you extract useful data from LinkedIn.”。
扩展截图
下载Scrapia扩展crx文件
下载Scrapia扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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.                     扩展基本信息
| 名称 |   |  
| 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"
    }
}  |  |