TL;DR - Webpage Summarizer

Summarizes webpages

Cos'è TL;DR - Webpage Summarizer?

TL;DR - Webpage Summarizer è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Summarizes webpages".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TL;DR - Webpage Summarizer

Scarica i file di estensione TL;DR - Webpage Summarizer 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

                        The extension provides a one-click way to get a condensed synopsis/summary of news articles, blog posts, and other content online for quick and easy reading. The plugin analyzes the content and creates summarized versions in three different lengths.                    

Informazioni di Base sull'Estensione

Nome TL;DR - Webpage Summarizer TL;DR - Webpage Summarizer
ID ibekajpmhffhfhnappgjngdehfjlonhd
URL Ufficiale https://chromewebstore.google.com/detail/tldr-webpage-summarizer/ibekajpmhffhfhnappgjngdehfjlonhd
Descrizione Summarizes webpages
Dimensione del File 33.69 KB
Conteggio Installazioni 52
Versione Corrente 4.0
Ultimo Aggiornamento 2018-05-11
Data di Pubblicazione 2018-05-11
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TL;DR - Webpage Summarizer",
    "version": "4.0",
    "description": "Summarizes webpages",
    "permissions": [
        "activeTab",
        "tabs",
        "*:\/\/*.smmry.com\/*"
    ],
    "icons": {
        "48": "icons\/border-48.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_popup": "popup\/choose_length_page.html",
        "default_icon": {
            "16": "icons\/summarizer-icon-16.png",
            "32": "icons\/summarizer-icon-32.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "polyfills\/browser-polyfill.js",
                "inject-content\/inject.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject-content\/inject.html",
        "inject-content\/cleanslate.css"
    ]
}