Scraping Tool

Scrap an entire web page

What is Scraping Tool?

Scraping Tool is a Chrome extension developed by Mariano Floyd, and its main feature is "Scrap an entire web page".

Download Scraping Tool Extension CRX File

Download Scraping Tool 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

                        This extension lets you scrape a website and download it for test and development process.                    

Extension Basic Information

Name Scraping Tool Scraping Tool
ID cigpcolnfinjpghhelhhiodpgcnpjhlm
Official URL https://chrome.google.com/webstore/detail/scraping-tool/cigpcolnfinjpghhelhhiodpgcnpjhlm
Description Scrap an entire web page
File Size 11.79 KB
Installation Count 178
Current Version 1.0.1
Last Updated 2016-05-26
Publish Date 2016-05-26
Rating 4.00/5 Total 1 Ratings
Developer Mariano Floyd
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scraping Tool",
    "short_name": "Scraping Tool",
    "version": "1.0.1",
    "description": "Scrap an entire web page",
    "background": {
        "page": "background.html"
    },
    "manifest_version": 2,
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icons\/iconInactive.png",
            "icons\/iconActive.png",
            "icons\/iconDefault"
        ],
        "default_popup": "background.html",
        "default_icon": "icons\/iconInactive.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "",
        "contextMenus",
        "storage",
        "downloads"
    ],
    "content_scripts": [
        {
            "js": [
                "scrap.js"
            ],
            "run_at": "document_idle",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}