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はdylanrstevensによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.」です。

拡張機能のスクリーンショット

screenshot

Chrome Web Scraper拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}