Text Extractor

Copy relevant text content from webpages

What is Text Extractor?

Text Extractor is a Chrome extension developed by https://businesssoluter.com, and its main feature is "Copy relevant text content from webpages".

Extension Screenshots

screenshot

Download Text Extractor Extension CRX File

Download Text Extractor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Extract Body Text of any web page                    

Extension Basic Information

Name Text Extractor Text Extractor
ID agokeolklhaaflhfidpfmohicpolgjdd
Official URL https://chromewebstore.google.com/detail/text-extractor/agokeolklhaaflhfidpfmohicpolgjdd
Description Copy relevant text content from webpages
File Size 17.61 KB
Installation Count 48
Current Version 1.0
Last Updated 2023-05-24
Publish Date 2023-05-24
Developer https://businesssoluter.com
Email [email protected]
Payment Type free
Extension Website https://backlinks.tools/
Help Page URL https://backlinks.tools/
Supported Languages 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"
            ]
        }
    ]
}