Too Long; Didnt Read

Text summary tool in your browser

Was ist Too Long; Didnt Read?

Too Long; Didnt Read ist eine Chrome-Erweiterung, die von christinelovett1993 entwickelt wurde, und ihr Hauptmerkmal ist "Text summary tool in your browser".

Erweiterungsscreenshots

screenshot
screenshot

Too Long; Didnt Read-Erweiterungs-CRX-Datei herunterladen

Laden Sie Too Long; Didnt Read-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Ever want to read the news but just don't have the time? Now you can get short summaries of articles with the click of a button! Catch up on the news in half the time with our browser extension Too Long; Didnt Read. With the click of a button you can summarize the article on the current page, saving you time in your busy day.                    

Grundlegende Informationen zur Erweiterung

Name Too Long; Didnt Read Too Long; Didnt Read
ID pabpikafhemmmgomocobeabhodfcclpl
Offizielle URL https://chrome.google.com/webstore/detail/too-long-didnt-read/pabpikafhemmmgomocobeabhodfcclpl
Beschreibung Text summary tool in your browser
Dateigröße 1.76 MB
Installationsanzahl 477
Aktuelle Version 1.1
Letztes Update 2017-06-06
Veröffentlichungsdatum 2017-06-06
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler christinelovett1993
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Too Long; Didnt Read",
    "description": "Text summary tool in your browser",
    "version": "1.1",
    "permissions": [
        "tabs",
        "http:\/\/boilerpipe-web.appspot.com\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "icons": {
        "128": "images\/folded-newspaper.png"
    },
    "browser_action": {
        "default_icon": "images\/folded-newspaper.png",
        "default_popup": "dialogue.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}