Estimation Elephant

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

Was ist Estimation Elephant?

Estimation Elephant ist eine Chrome-Erweiterung, die von khsurox888 entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.".

Erweiterungsscreenshots

screenshot

Estimation Elephant-Erweiterungs-CRX-Datei herunterladen

Laden Sie Estimation Elephant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Estimation Elephant Estimation Elephant
ID pkijpmicldgceibacbkhbbeepglpngip
Offizielle URL https://chromewebstore.google.com/detail/estimation-elephant/pkijpmicldgceibacbkhbbeepglpngip
Beschreibung This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.
Dateigröße 37.79 KB
Installationsanzahl 15
Aktuelle Version 1.11
Letztes Update 2016-12-15
Veröffentlichungsdatum 2016-12-15
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler khsurox888
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/"
    ]
}