Estimation Elephant

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

Co to jest Estimation Elephant?

Estimation Elephant to rozszerzenie Chrome opracowane przez khsurox888, a jego główną funkcją jest „This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Estimation Elephant

Pobierz pliki rozszerzeń Estimation Elephant w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Estimation Elephant Estimation Elephant
ID pkijpmicldgceibacbkhbbeepglpngip
Oficjalny URL https://chromewebstore.google.com/detail/estimation-elephant/pkijpmicldgceibacbkhbbeepglpngip
Opis This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.
Rozmiar pliku 37.79 KB
Liczba instalacji 15
Aktualna Wersja 1.11
Ostatnia Aktualizacja 2016-12-15
Data Publikacji 2016-12-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper khsurox888
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/"
    ]
}