Estimation Elephant
This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.
Wat is Estimation Elephant?
Estimation Elephant is een Chrome-extensie ontwikkeld door khsurox888, en de belangrijkste functie is "This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.".
Extensie Screenshots
Download het CRX-bestand van de extensie Estimation Elephant
Download Estimation Elephant-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | pkijpmicldgceibacbkhbbeepglpngip |
Officiële URL | https://chromewebstore.google.com/detail/estimation-elephant/pkijpmicldgceibacbkhbbeepglpngip |
Beschrijving | This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist. |
Bestandsgrootte | 37.79 KB |
Aantal Installaties | 15 |
Huidige Versie | 1.11 |
Laatst Bijgewerkt | 2016-12-15 |
Publicatiedatum | 2016-12-15 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | khsurox888 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/" ] } |