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
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}