Too Long; Didnt Read

Text summary tool in your browser

Vad är Too Long; Didnt Read?

Too Long; Didnt Read är en Chrome-tillägg utvecklad av christinelovett1993, och dess huvudfunktion är "Text summary tool in your browser".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Too Long; Didnt Read-förlängningens CRX-fil

Ladda ner Too Long; Didnt Read-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Too Long; Didnt Read Too Long; Didnt Read
ID pabpikafhemmmgomocobeabhodfcclpl
Officiell webbadress https://chrome.google.com/webstore/detail/too-long-didnt-read/pabpikafhemmmgomocobeabhodfcclpl
Beskrivning Text summary tool in your browser
Filstorlek 1.76 MB
Antal Installationer 477
Aktuell Version 1.1
Senast Uppdaterad 2017-06-06
Publiceringsdatum 2017-06-06
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare christinelovett1993
Betalningssätt free
Stödda Språk 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'"
}