Too Long; Didnt Read

Text summary tool in your browser

O que é Too Long; Didnt Read?

Too Long; Didnt Read é uma extensão do Chrome desenvolvida por christinelovett1993, e sua principal característica é "Text summary tool in your browser".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Too Long; Didnt Read

Baixe arquivos de extensão Too Long; Didnt Read no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Too Long; Didnt Read Too Long; Didnt Read
ID pabpikafhemmmgomocobeabhodfcclpl
URL Oficial https://chrome.google.com/webstore/detail/too-long-didnt-read/pabpikafhemmmgomocobeabhodfcclpl
Descrição Text summary tool in your browser
Tamanho do Arquivo 1.76 MB
Contagem de Instalações 477
Versão Atual 1.1
Última Atualização 2017-06-06
Data de Publicação 2017-06-06
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor christinelovett1993
Tipo de Pagamento free
Idiomas Suportados 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'"
}