Estimation Elephant
This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.
Cos'è Estimation Elephant?
Estimation Elephant è un'estensione di Chrome sviluppata da khsurox888, e la sua funzione principale è "This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Estimation Elephant
Scarica i file di estensione Estimation Elephant in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | pkijpmicldgceibacbkhbbeepglpngip |
URL Ufficiale | https://chromewebstore.google.com/detail/estimation-elephant/pkijpmicldgceibacbkhbbeepglpngip |
Descrizione | This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist. |
Dimensione del File | 37.79 KB |
Conteggio Installazioni | 15 |
Versione Corrente | 1.11 |
Ultimo Aggiornamento | 2016-12-15 |
Data di Pubblicazione | 2016-12-15 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | khsurox888 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/" ] } |