Estimation Elephant

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

什么是Estimation Elephant?

Estimation Elephant是由khsurox888开发的Chrome扩展程序,该扩展的主要功能是“This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.”。

扩展截图

screenshot

下载Estimation Elephant扩展crx文件

下载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\/"
    ]
}