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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}