MrScraper

MrScraper selector helper tool

什么是MrScraper?

MrScraper是由https://mrscraper.com开发的Chrome扩展程序,该扩展的主要功能是“MrScraper selector helper tool”。

扩展截图

screenshot

下载MrScraper扩展crx文件

下载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:\/\/*\/*"
            ]
        }
    ]
}