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 |
| 官方網址 | 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"
]
} | |