View webpage as TXT
Chrome Extension to open web pages with w3.org html2txt
View webpage as TXTคืออะไร?
View webpage as TXT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chris Love และคุณลักษณะหลักของมันคือ "Chrome Extension to open web pages with w3.org html2txt"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย View webpage as TXT
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |