Reading Time

Add a reading time indicator to Readability

Что такое Reading Time?

Reading Time - это расширение Chrome, разработанное donnierayjones, и его основная функция - "Add a reading time indicator to Readability".

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

screenshot

Скачать файл CRX расширения Reading Time

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

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

                        Today's blog posts are too long. See just how too long they are with
this Google Chrome extension. Decide within seconds if you don't have
enough minutes (or hours?) to read an article.

Issues or feature requests? Find me on twitter: @donnierayjones.

Full changelog available on github:

https://github.com/donnierayjones/reading-time-chrome/commits/master                    

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

Название Reading Time Reading Time
ID nkcldhfebepkmmokbhcphgonamoolgfo
Официальный URL https://chromewebstore.google.com/detail/reading-time/nkcldhfebepkmmokbhcphgonamoolgfo
Описание Add a reading time indicator to Readability
Размер файла 64.37 KB
Количество установок 83
Текущая Версия 0.1.0
Последнее Обновление 2014-02-13
Дата публикации 2014-02-12
Рейтинг 5.00/5 Всего 1 оценок
Разработчик donnierayjones
Тип оплаты free
Официальный сайт расширения https://github.com/donnierayjones/reading-time-chrome
URL страницы помощи https://github.com/donnierayjones/reading-time-chrome/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reading Time",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Add a reading time indicator to Readability",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.readability.com\/*",
                "https:\/\/www.readability.com\/*"
            ],
            "js": [
                "jquery.js",
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}