View webpage as TXT

Chrome Extension to open web pages with w3.org html2txt

View webpage as TXTとは何ですか?

View webpage as TXTはChris Loveによって開発されたChromeの拡張機能で、その主な機能は「Chrome Extension to open web pages with w3.org html2txt」です。

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

screenshot
screenshot

View webpage as TXT拡張機能のCRXファイルをダウンロード

View webpage as TXT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Simple open source extension to view the current web-page or the selected link rendered as text using the w3.org html2txt webpage.

This enables you to quickly view a web-page rendered as text along with a list of the urls from the web-page. This saves manually going to https://www.w3.org/services/html2txt and manually entering the url you want to view as text.

Three ways to use:
- Open link in the w3.org html2txt web-page: Right hand click on a link and select "View link as txt".
- Open the URL of the current tab in the w3.org html2txt web-page: Right hand click on a blank area of the current web-page and select "View page as txt".
- Open the URL of the current tab in the w3.org html2txt web-page: Click on the "View webpage as TXT" icon in the extension toolbar.

Source code available from https://github.com/clove3am/chrome-html-to-txt                    

拡張機能の基本情報

名前 View webpage as TXT View webpage as TXT
ID edcoejgkliiafkkoolfdmfnfbbmcaheg
公式URL https://chromewebstore.google.com/detail/view-webpage-as-txt/edcoejgkliiafkkoolfdmfnfbbmcaheg
説明 Chrome Extension to open web pages with w3.org html2txt
ファイルサイズ 6.25 KB
インストール数 45
現在のバージョン 1.0
最終更新日 2023-06-24
公開日 2023-05-23
開発者 Chris Love
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/clove3am/chrome-html-to-txt
ヘルプページのURL https://github.com/clove3am/chrome-html-to-txt/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "View webpage as TXT",
    "version": "1.0",
    "description": "Chrome Extension to open web pages with w3.org html2txt",
    "minimum_chrome_version": "88",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "logo.png",
        "128": "logo128.png"
    },
    "action": {
        "default_icon": {
            "16": "logo.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    }
}