Chromescraper
Easily any data from any webpage
什么是Chromescraper?
Chromescraper是由AltIvan开发的Chrome扩展程序,该扩展的主要功能是“Easily any data from any webpage”。
扩展截图
下载Chromescraper扩展crx文件
下载Chromescraper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Extract any data from any website, just right-click it and select "ChromeScrap this!", move the slider to expand the selector until it covers one of the elements you want to scrap. Then check (or un-check) the classes until you are satisfied with the result, it exports the data to google spreadsheets for easy viewing and modifying, if there are columns you don't need just delete them! That's it. Watch the video if you still have doubts about how to use it!
扩展基本信息
名称 | |
ID | gpnnphicgidbmjhcglefdaeildldigfp |
官方URL | https://chrome.google.com/webstore/detail/chromescraper/gpnnphicgidbmjhcglefdaeildldigfp |
简介 | Easily any data from any webpage |
文件大小 | 354 KB |
安装次数 | 5,000 |
当前版本 | 0.2 |
更新时间 | 2015-10-06 |
上架时间 | 2015-10-06 |
评分 | 2.22/5 共32次评分 |
开发者 | AltIvan |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chromescraper", "version": "0.2", "description": "Easily any data from any webpage", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "contentSettings", "contextMenus", "tabs", "identity", "https:\/\/spreadsheets.google.com\/feeds\/", "storage" ], "oauth2": { "client_id": "167010525276-nt5qkngb2dnifsnjg9b70lfkujl3pu30.apps.googleusercontent.com", "scopes": [ "https:\/\/spreadsheets.google.com\/feeds", "https:\/\/www.googleapis.com\/auth\/drive" ] }, "web_accessible_resources": [ "utils.js", "libs\/*", "snippets\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "libs\/require.js", "require_config.js", "content_script.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "chromescrap.js" ] } } |