Estimation Elephant
This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.
Hvad er Estimation Elephant?
Estimation Elephant er en Chrome-udvidelse udviklet af khsurox888, og dens hovedfunktion er "This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.".
Udvidelsesskærmbilleder
Download Estimation Elephant-udvidelses-CRX-fil
Download Estimation Elephant-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | pkijpmicldgceibacbkhbbeepglpngip |
Officiel URL | https://chromewebstore.google.com/detail/estimation-elephant/pkijpmicldgceibacbkhbbeepglpngip |
Beskrivelse | This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist. |
Filstørrelse | 37.79 KB |
Antal Installationer | 15 |
Nuværende Version | 1.11 |
Senest Opdateret | 2016-12-15 |
Udgivelsesdato | 2016-12-15 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | khsurox888 |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/" ] } |