Text Extractor

Copy relevant text content from webpages

Cos'è Text Extractor?

Text Extractor è un'estensione di Chrome sviluppata da https://businesssoluter.com, e la sua funzione principale è "Copy relevant text content from webpages".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Text Extractor

Scarica i file di estensione Text Extractor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Extract Body Text of any web page                    

Informazioni di Base sull'Estensione

Nome Text Extractor Text Extractor
ID agokeolklhaaflhfidpfmohicpolgjdd
URL Ufficiale https://chromewebstore.google.com/detail/text-extractor/agokeolklhaaflhfidpfmohicpolgjdd
Descrizione Copy relevant text content from webpages
Dimensione del File 17.61 KB
Conteggio Installazioni 48
Versione Corrente 1.0
Ultimo Aggiornamento 2023-05-24
Data di Pubblicazione 2023-05-24
Sviluppatore https://businesssoluter.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://backlinks.tools/
URL della Pagina di Aiuto https://backlinks.tools/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Text Extractor",
    "version": "1.0",
    "description": "Copy relevant text content from webpages",
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}