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