Too Long; Didnt Read

Text summary tool in your browser

Qu'est-ce que Too Long; Didnt Read ?

Too Long; Didnt Read est une extension Chrome développée par christinelovett1993, et sa fonction principale est "Text summary tool in your browser".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Too Long; Didnt Read

Téléchargez les fichiers d'extension Too Long; Didnt Read au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Too Long; Didnt Read Too Long; Didnt Read
ID pabpikafhemmmgomocobeabhodfcclpl
URL Officiel https://chrome.google.com/webstore/detail/too-long-didnt-read/pabpikafhemmmgomocobeabhodfcclpl
Description Text summary tool in your browser
Taille du Fichier 1.76 MB
Nombre d'Installations 477
Version Actuelle 1.1
Dernière Mise à Jour 2017-06-06
Date de Publication 2017-06-06
Évaluation 3.00/5 Total 2 Évaluations
Développeur christinelovett1993
Type de Paiement free
Langues Prises en Charge 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'"
}