chromeCrawl

Crawl website page content information

chromeCrawlคืออะไร?

chromeCrawl เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 1023079644 และคุณลักษณะหลักของมันคือ "Crawl website page content information"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย chromeCrawl

ดาวน์โหลดไฟล์ส่วนขยาย chromeCrawl ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        这是一款用于爬取页面信息的谷歌插件,目前可以爬取所有页面。安装插件后需要打开爬取功能,如果需要接收到爬取的数据,需要自己在实现接口。除此之外,插件还具有爬取数据后自动关闭页面,拦截多媒体资源等功能。具体教程请看:https://github.com/fanyong920/crawlItem                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ chromeCrawl chromeCrawl
ID pcadbaceejnkfhkoomcbdifcpfefkmbl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chromecrawl/pcadbaceejnkfhkoomcbdifcpfefkmbl
คำอธิบาย Crawl website page content information
ขนาดไฟล์ 38.44 KB
จำนวนการติดตั้ง 84
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-04-14
วันที่เผยแพร่ 2020-04-11
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา 1023079644
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "chromeCrawl",
    "description": "Crawl website page content information",
    "version": "1.1",
    "manifest_version": 2,
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "popup.html",
        " default_title": "\u6293\u53d6\u9875\u9762\u6240\u6709\u5185\u5bb9\u4fbf\u5229\u5de5\u5177",
        "default_icon": {
            "16": "images\/48.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.jpg"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens hello.html"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "permission": false
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "*:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "webNavigation"
    ],
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.jpg"
    }
}