Scraping Tool

Scrap an entire web page

Qu'est-ce que Scraping Tool ?

Scraping Tool est une extension Chrome développée par Mariano Floyd, et sa fonction principale est "Scrap an entire web page".

Télécharger le fichier CRX de l'extension Scraping Tool

Téléchargez les fichiers d'extension Scraping Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Scraping Tool Scraping Tool
ID cigpcolnfinjpghhelhhiodpgcnpjhlm
URL Officiel https://chrome.google.com/webstore/detail/scraping-tool/cigpcolnfinjpghhelhhiodpgcnpjhlm
Description Scrap an entire web page
Taille du Fichier 11.79 KB
Nombre d'Installations 178
Version Actuelle 1.0.1
Dernière Mise à Jour 2016-05-26
Date de Publication 2016-05-26
Évaluation 4.00/5 Total 1 Évaluations
Développeur Mariano Floyd
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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:\/\/*\/*"
            ]
        }
    ]
}