MrScraper

MrScraper selector helper tool

MrScraper là gì?

MrScraper là một tiện ích mở rộng Chrome được phát triển bởi https://mrscraper.com, và tính năng chính của nó là "MrScraper selector helper tool".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng MrScraper

Tải xuống các tệp mở rộng MrScraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MrScraper MrScraper
ID bhjedfpgiobfaojogegbmcbocfnbkimh
URL Chính Thức https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh
Mô tả MrScraper selector helper tool
Kích Thước Tệp 21.63 KB
Số Lần Cài Đặt 105
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-02-09
Ngày Phát Hành 2023-02-08
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://mrscraper.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mrscraper.com
URL Trang Trợ Giúp https://mrscraper.freshdesk.com/support/home
URL Trang Chính Sách Bảo Mật https://mrscraper.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}