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 Extension to open web pages with w3.org html2txt"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में View webpage as TXT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |