TL;DR - Webpage Summarizer

Summarizes webpages

Co to jest TL;DR - Webpage Summarizer?

TL;DR - Webpage Summarizer to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Summarizes webpages”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia TL;DR - Webpage Summarizer

Pobierz pliki rozszerzeń TL;DR - Webpage Summarizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa TL;DR - Webpage Summarizer TL;DR - Webpage Summarizer
ID ibekajpmhffhfhnappgjngdehfjlonhd
Oficjalny URL https://chromewebstore.google.com/detail/tldr-webpage-summarizer/ibekajpmhffhfhnappgjngdehfjlonhd
Opis Summarizes webpages
Rozmiar pliku 33.69 KB
Liczba instalacji 52
Aktualna Wersja 4.0
Ostatnia Aktualizacja 2018-05-11
Data Publikacji 2018-05-11
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    ]
}