Too Long; Didnt Read

Text summary tool in your browser

Что такое Too Long; Didnt Read?

Too Long; Didnt Read - это расширение Chrome, разработанное christinelovett1993, и его основная функция - "Text summary tool in your browser".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Too Long; Didnt Read

Скачайте файлы расширений Too Long; Didnt Read в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Too Long; Didnt Read Too Long; Didnt Read
ID pabpikafhemmmgomocobeabhodfcclpl
Официальный URL https://chrome.google.com/webstore/detail/too-long-didnt-read/pabpikafhemmmgomocobeabhodfcclpl
Описание Text summary tool in your browser
Размер файла 1.76 MB
Количество установок 477
Текущая Версия 1.1
Последнее Обновление 2017-06-06
Дата публикации 2017-06-06
Рейтинг 3.00/5 Всего 2 оценок
Разработчик christinelovett1993
Тип оплаты free
Поддерживаемые языки 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'"
}