Too Long; Didnt Read

Text summary tool in your browser

Cos'è Too Long; Didnt Read?

Too Long; Didnt Read è un'estensione di Chrome sviluppata da christinelovett1993, e la sua funzione principale è "Text summary tool in your browser".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Too Long; Didnt Read

Scarica i file di estensione Too Long; Didnt Read 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Too Long; Didnt Read Too Long; Didnt Read
ID pabpikafhemmmgomocobeabhodfcclpl
URL Ufficiale https://chrome.google.com/webstore/detail/too-long-didnt-read/pabpikafhemmmgomocobeabhodfcclpl
Descrizione Text summary tool in your browser
Dimensione del File 1.76 MB
Conteggio Installazioni 477
Versione Corrente 1.1
Ultimo Aggiornamento 2017-06-06
Data di Pubblicazione 2017-06-06
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore christinelovett1993
Tipo di Pagamento free
Lingue Supportate 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'"
}