TL;DR - Webpage Summarizer

Summarizes webpages

Co je TL;DR - Webpage Summarizer?

TL;DR - Webpage Summarizer je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Summarizes webpages“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření TL;DR - Webpage Summarizer

Stáhněte si soubory rozšíření TL;DR - Webpage Summarizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název TL;DR - Webpage Summarizer TL;DR - Webpage Summarizer
ID ibekajpmhffhfhnappgjngdehfjlonhd
Oficiální URL https://chromewebstore.google.com/detail/tldr-webpage-summarizer/ibekajpmhffhfhnappgjngdehfjlonhd
Popis Summarizes webpages
Velikost souboru 33.69 KB
Počet instalací 52
Aktuální Verze 4.0
Poslední Aktualizace 2018-05-11
Datum Vydání 2018-05-11
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
    ]
}