Scraping Tool

Scrap an entire web page

Wat is Scraping Tool?

Scraping Tool is een Chrome-extensie ontwikkeld door Mariano Floyd, en de belangrijkste functie is "Scrap an entire web page".

Download het CRX-bestand van de extensie Scraping Tool

Download Scraping Tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Scraping Tool Scraping Tool
ID cigpcolnfinjpghhelhhiodpgcnpjhlm
Officiële URL https://chrome.google.com/webstore/detail/scraping-tool/cigpcolnfinjpghhelhhiodpgcnpjhlm
Beschrijving Scrap an entire web page
Bestandsgrootte 11.79 KB
Aantal Installaties 178
Huidige Versie 1.0.1
Laatst Bijgewerkt 2016-05-26
Publicatiedatum 2016-05-26
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Mariano Floyd
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
            ]
        }
    ]
}