Estimation Elephant
This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.
什麼是Estimation Elephant?
Estimation Elephant是由khsurox888開發的Chrome擴展程式,該擴展的主要功能是“This extension shows estimated reading time for articles. Compatible with New Yorker, NYTimes, The Atlantic, and The Economist.”。
擴展截圖
下載Estimation Elephant擴展crx文件
下載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.
擴展基本資訊
名稱 | |
ID | pkijpmicldgceibacbkhbbeepglpngip |
官方網址 | 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\/" ] } |