Chrome Web Scraper
Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
什么是Chrome Web Scraper?
Chrome Web Scraper是由dylanrstevens开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.”。
扩展截图
下载Chrome Web Scraper扩展crx文件
下载Chrome Web Scraper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Quickly gather the raw text from a website, and have it automatically parsed and saved to a text file for you. Perfect for developers, or those looking to gather large amounts of real text data efficiently.
扩展基本信息
名称 | |
ID | obhkinejeakgfelofmgbjdenckknmeoc |
官方URL | https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc |
简介 | Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file. |
文件大小 | 198 KB |
安装次数 | 56 |
当前版本 | 1.0 |
更新时间 | 2022-08-07 |
上架时间 | 2022-08-07 |
开发者 | dylanrstevens |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/dylanrstevens/chrome-web-scraper |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chrome Web Scraper", "version": "1.0", "description": "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Chrome Web Scraper", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "downloads" ] } |