MrScraper

MrScraper selector helper tool

Apa itu MrScraper?

MrScraper adalah ekstensi Chrome yang dikembangkan oleh https://mrscraper.com, dan fitur utamanya adalah "MrScraper selector helper tool".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi MrScraper

Unduh file ekstensi MrScraper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        The MrScraper.com tool lets you easily find CSS selectors from to use with scrapers.

Just click on the element you want to target and a CSS selector will be generated for you. 

Additionally, any CSS selector you type in will be highlighted. Use this to easily detect what elements will be extracted with the current selector.                    

Informasi Dasar Ekstensi

Nama MrScraper MrScraper
ID bhjedfpgiobfaojogegbmcbocfnbkimh
URL Resmi https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh
Deskripsi MrScraper selector helper tool
Ukuran File 21.63 KB
Jumlah Instalasi 105
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2023-02-09
Tanggal Publikasi 2023-02-08
Penilaian 1.00/5 Total 1 Penilaian
Pengembang https://mrscraper.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://mrscraper.com
URL Halaman Bantuan https://mrscraper.freshdesk.com/support/home
URL Halaman Kebijakan Privasi https://mrscraper.com/privacy-policy
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MrScraper",
    "version": "1.0.0",
    "description": "MrScraper selector helper tool",
    "manifest_version": 3,
    "author": "Kai Sasaki",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "Command+Shift+V"
            }
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon-128.png",
                "templates\/scraper-tool.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}