TLDR: News Article Summarizer

This extension automatically summarizes news articles.

Что такое TLDR: News Article Summarizer?

TLDR: News Article Summarizer - это расширение Chrome, разработанное Abhishek Pant, и его основная функция - "This extension automatically summarizes news articles.".

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

screenshot

Скачать файл CRX расширения TLDR: News Article Summarizer

Скачайте файлы расширений TLDR: News Article Summarizer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        When you are browsing a supported website, click the icon in the Omnibox to obtain a brief five-line summary of the news article.

Also available as a stand-alone web-app here:
 
http://news-article-summarizer.herokuapp.com/

Note: Currently supports only NYTimes.

Developed by:

Abhishek Pant
Aniruddha Gupta
Ankit Jain
Bhaskar Bagchi
Shushman Chowdhary
Rishi Mehta
Utkarsh Jaiswal                    

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

Название TLDR: News Article Summarizer TLDR: News Article Summarizer
ID omnkfiggdjenoclnfdhijodllleflpjk
Официальный URL https://chrome.google.com/webstore/detail/tldr-news-article-summari/omnkfiggdjenoclnfdhijodllleflpjk
Описание This extension automatically summarizes news articles.
Размер файла 364 KB
Количество установок 362
Текущая Версия 0.1
Последнее Обновление 2014-12-05
Дата публикации 2014-12-05
Рейтинг 1.00/5 Всего 3 оценок
Разработчик Abhishek Pant
Тип оплаты free
Официальный сайт расширения http://news-article-summarizer.herokuapp.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TLDR: News Article Summarizer",
    "description": "This extension automatically summarizes news articles.",
    "version": "0.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "http:\/\/www.nytimes.com\/*",
        "http:\/\/news.yahoo.com\/*",
        "http:\/\/localhost:8000\/*",
        "http:\/\/news-article-summarizer.herokuapp.com\/*",
        "tabs"
    ],
    "web_accessible_resources": [
        "circle-loading-animation.gif"
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "TL;DR supports this site."
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    }
}