Chrome Web Scraper

Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.

Chrome Web Scraperคืออะไร?

Chrome Web Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dylanrstevens และคุณลักษณะหลักของมันคือ "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file."

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

screenshot

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

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

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

                        Quickly gather the raw text from a website, and have it automatically parsed and saved to a text file for you. Perfect for developers, or those looking to gather large amounts of real text data efficiently.                    

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

ชื่อ Chrome Web Scraper Chrome Web Scraper
ID obhkinejeakgfelofmgbjdenckknmeoc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc
คำอธิบาย Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
ขนาดไฟล์ 198 KB
จำนวนการติดตั้ง 56
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-08-07
วันที่เผยแพร่ 2022-08-07
ผู้พัฒนา dylanrstevens
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dylanrstevens/chrome-web-scraper
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chrome Web Scraper",
    "version": "1.0",
    "description": "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Chrome Web Scraper",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "downloads"
    ]
}