HTML scraper

Scrape HTML

What is HTML scraper?

HTML scraper is a Chrome extension developed by Unknown, and its main feature is "Scrape HTML".

Download HTML scraper Extension CRX File

Download HTML scraper 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

                                            

Extension Basic Information

Name HTML scraper HTML scraper
ID jhkihmmhcfpiaflhlcdaanjegmeokjeo
Official URL https://chromewebstore.google.com/detail/html-scraper/jhkihmmhcfpiaflhlcdaanjegmeokjeo
Description Scrape HTML
File Size 8.4 KB
Installation Count 17
Current Version 1.0
Last Updated 2018-08-21
Publish Date 2018-08-21
Rating 5.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML scraper",
    "description": "Scrape HTML",
    "version": "1.0",
    "author": "@colepierce",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html"
    }
}