Table Scrape
Scrape from tables.
什麼是Table Scrape?
Table Scrape是由https://claycodes.org開發的Chrome擴展程式,該擴展的主要功能是“Scrape from tables.”。
擴展截圖
下載Table Scrape擴展crx文件
下載Table Scrape擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Scrape data to a CSV from paginated tables using a button labeled with "next".
Github source https://github.com/GoogleChromeLabs/table-scrape.git 擴展基本資訊
| 名稱 | |
| ID | ocglnchcpdjocppfepejjddgieoodaep |
| 官方網址 | https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep |
| 簡介 | Scrape from tables. |
| 檔案大小 | 44.66 KB |
| 安裝次數 | 169 |
| 目前版本 | 0.0.2 |
| 更新時間 | 2023-04-14 |
| 上架時間 | 2023-04-05 |
| 開發者 | https://claycodes.org |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.claycodes.org/google-add-onsextensions/table-scrape |
| 說明頁面URL | https://www.claycodes.org/google-add-onsextensions/table-scrape |
| 隱私政策頁面URL | https://www.claycodes.org/home/privacy-policy |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Table Scrape",
"version": "0.0.2",
"author": "Clay Smith",
"short_name": "Table Scrape",
"default_locale": "en",
"description": "Scrape from tables.",
"icons": {
"19": "images\/19.png",
"32": "images\/32.png",
"38": "images\/38.png",
"36": "images\/36.png",
"64": "images\/64.png",
"128": "images\/128.png"
},
"permissions": [
"storage",
"webNavigation"
],
"host_permissions": [
"https:\/\/*\/*"
],
"action": {
"default_icon": {
"19": "images\/19.png",
"38": "images\/38.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/*\/*"
],
"exclude_matches": [],
"js": [
"contentscript.js"
]
}
],
"background": {
"service_worker": "background.js"
}
} | |