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".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου 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 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"
    }
}