Estimation Elephant

This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.

Что такое Estimation Elephant?

Estimation Elephant - это расширение Chrome, разработанное khsurox888, и его основная функция - "This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.".

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

screenshot

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

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

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

                        Get estimated reading time for articles - great for productivity and helping figure out which long-form articles you really want to read. Currently compatible with New Yorker, NYTimes, The Atlantic, and The Economist.                    

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

Название Estimation Elephant Estimation Elephant
ID pkijpmicldgceibacbkhbbeepglpngip
Официальный URL https://chromewebstore.google.com/detail/estimation-elephant/pkijpmicldgceibacbkhbbeepglpngip
Описание This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.
Размер файла 37.79 KB
Количество установок 15
Текущая Версия 1.11
Последнее Обновление 2016-12-15
Дата публикации 2016-12-15
Рейтинг 5.00/5 Всего 1 оценок
Разработчик khsurox888
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Estimation Elephant",
    "description": "This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.",
    "version": "1.11",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Estimation Elephant Estimates Reading Time!"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.newyorker.com\/*",
                "*:\/\/*.nytimes.com\/*",
                "*:\/\/*.theatlantic.com\/*",
                "*:\/\/*.economist.com\/*",
                "http:\/\/jquery.com\/*"
            ],
            "js": [
                "content.js",
                "jquery-3.1.1.slim.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ]
}