Scrape me
Scrape pages easily.
什么是Scrape me?
Scrape me是由maciej.jordanek开发的Chrome扩展程序,该扩展的主要功能是“Scrape pages easily.”。
扩展截图
下载Scrape me扩展crx文件
下载Scrape me扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Scrape the web easily. This web scraper allows you to define your own data table which you can download as a .csv file format. 扩展基本信息
| 名称 | |
| ID | nnglhekkeoeccgngolgcamlepachjfcp |
| 官方URL | https://chrome.google.com/webstore/detail/scrape-me/nnglhekkeoeccgngolgcamlepachjfcp |
| 简介 | Scrape pages easily. |
| 文件大小 | 452 KB |
| 安装次数 | 213 |
| 当前版本 | 0.3 |
| 更新时间 | 2020-02-18 |
| 上架时间 | 2020-02-18 |
| 评分 | 1.80/5 共5次评分 |
| 开发者 | maciej.jordanek |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Scrape me",
"version": "0.3",
"description": "Scrape pages easily.",
"content_security_policy": "script-src 'self' 'sha256-V\/iEy\/JDsKiWnn\/Sob0oSf4ctpuI27zHmLnLyOfgQ58='; object-src 'self'",
"permissions": [
"tabs",
"activeTab"
],
"browser_action": {
"default_popup": "index.html",
"default_icon": "assets\/logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/"
],
"js": [
"contentScript.js"
],
"css": [
"content.css"
]
}
],
"icons": {
"128": "assets\/logo_128.png"
}
} | |