Estimation Elephant
This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.
¿Qué es Estimation Elephant?
Estimation Elephant es una extensión de Chrome desarrollada por khsurox888, y su función principal es "This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Estimation Elephant
Descarga archivos de extensión Estimation Elephant en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | pkijpmicldgceibacbkhbbeepglpngip |
URL Oficial | https://chromewebstore.google.com/detail/estimation-elephant/pkijpmicldgceibacbkhbbeepglpngip |
Descripción | This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist. |
Tamaño del Archivo | 37.79 KB |
Cantidad de Instalaciones | 15 |
Versión Actual | 1.11 |
Última Actualización | 2016-12-15 |
Fecha de Publicación | 2016-12-15 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | khsurox888 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/" ] } |