MrScraper

MrScraper selector helper tool

Τι είναι το MrScraper;

Το MrScraper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://mrscraper.com, και η κύρια λειτουργία του είναι "MrScraper selector helper tool".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης MrScraper

Λήψη αρχείων επέκτασης MrScraper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα MrScraper MrScraper
ID bhjedfpgiobfaojogegbmcbocfnbkimh
Επίσημο URL https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh
Περιγραφή MrScraper selector helper tool
Μέγεθος Αρχείου 21.63 KB
Αριθμός Εγκαταστάσεων 105
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2023-02-09
Ημερομηνία Δημοσίευσης 2023-02-08
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://mrscraper.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://mrscraper.com
Διεύθυνση URL της Σελίδας Βοήθειας https://mrscraper.freshdesk.com/support/home
URL της Σελίδας Πολιτικής Απορρήτου https://mrscraper.com/privacy-policy
Υποστηριζόμενες Γλώσσες 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:\/\/*\/*"
            ]
        }
    ]
}