HTML Content Extractor

Extract and display the main content from web pages with a single click. Web Content Extractor is a free and user-friendly Chrome…

Vad är HTML Content Extractor?

HTML Content Extractor är en Chrome-tillägg utvecklad av Peter77, och dess huvudfunktion är "Extract and display the main content from web pages with a single click. Web Content Extractor is a free and user-friendly Chrome…".

Tilläggsskärmbilder

screenshot

Ladda ner HTML Content Extractor-förlängningens CRX-fil

Ladda ner HTML Content Extractor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Extract and display the main content from web pages with a single click.

Web Content Extractor is a free and user-friendly Chrome extension designed to help you easily extract and display the main content of web pages. With just a single click, you can access the most relevant information from articles, blog posts, and other text-based web content without the clutter of ads, sidebars, and unnecessary elements.                    

Grundläggande Information om Tillägg

Namn HTML Content Extractor HTML Content Extractor
ID hlfclpmdlncebblfafnegijjbnmjegkh
Officiell webbadress https://chromewebstore.google.com/detail/html-content-extractor/hlfclpmdlncebblfafnegijjbnmjegkh
Beskrivning Extract and display the main content from web pages with a single click. Web Content Extractor is a free and user-friendly Chrome…
Filstorlek 39.01 KB
Antal Installationer 103
Aktuell Version 1.0
Senast Uppdaterad 2023-04-18
Publiceringsdatum 2023-04-18
Utvecklare Peter77
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HTML Content Extractor",
    "version": "1.0",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/text.png",
            "48": "\/icons\/text.png",
            "128": "\/icons\/text.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "readability.js",
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "\/icons\/text.png",
        "48": "\/icons\/text.png",
        "128": "\/icons\/text.png"
    }
}