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”。
扩展截图
下载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 |
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" } } |