Scrape me
Scrape pages easily.
What is Scrape me?
Scrape me is a Chrome extension developed by maciej.jordanek, and its main feature is "Scrape pages easily.".
Extension Screenshots
Download Scrape me Extension CRX File
Download Scrape me extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Scrape the web easily. This web scraper allows you to define your own data table which you can download as a .csv file format.
Extension Basic Information
Name | |
ID | nnglhekkeoeccgngolgcamlepachjfcp |
Official URL | https://chrome.google.com/webstore/detail/scrape-me/nnglhekkeoeccgngolgcamlepachjfcp |
Description | Scrape pages easily. |
File Size | 452 KB |
Installation Count | 213 |
Current Version | 0.3 |
Last Updated | 2020-02-18 |
Publish Date | 2020-02-18 |
Rating | 1.80/5 Total 5 Ratings |
Developer | maciej.jordanek |
Payment Type | free |
Supported Languages | 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" } } |