Reading Time

Read smart. Tells you how long a webpage takes to read.

Что такое Reading Time?

Reading Time - это расширение Chrome, разработанное Oscar de Dios, и его основная функция - "Read smart. Tells you how long a webpage takes to read.".

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

screenshot

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

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

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

                        This extension calculates the time for reading an article. 

It uses calls to www.diffbot.com to only take in account the real content, it doesn't count words of adds , comments, etc.

In the options page you can change the speed reading. 

You can activate too the "Automatically Load" mode. This mode reads in background every page you visit and if the time for reading is greater than three minutes it shows you this time. In this mode the extensions do a call to diffbot.com for every page you visit.                    

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

Название Reading Time Reading Time
ID afkinjejdkdhjmclmmhaegfhbdcoohdg
Официальный URL https://chromewebstore.google.com/detail/reading-time/afkinjejdkdhjmclmmhaegfhbdcoohdg
Описание Read smart. Tells you how long a webpage takes to read.
Размер файла 161 KB
Количество установок 139
Текущая Версия 1.0.5
Последнее Обновление 2014-05-26
Дата публикации 2014-05-26
Рейтинг 3.11/5 Всего 9 оценок
Разработчик Oscar de Dios
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.noteboardapp.com/policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reading Time",
    "manifest_version": 2,
    "version": "1.0.5",
    "short_name": "Reading Time",
    "icons": {
        "48": "book.png"
    },
    "description": "Read smart.  Tells you how long a webpage takes to read.",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_title": "Reading Time",
        "default_icon": "book.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "img\/ajax-loader.gif"
    ]
}