Infometer

Infometer helps you measure how much of a web page you have read.

什麼是Infometer?

Infometer是由eloone開發的Chrome擴展程式,該擴展的主要功能是“Infometer helps you measure how much of a web page you have read.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Infometer擴展crx文件

下載Infometer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Readability extension that provides a progress bar at the top of a web page and two markers to delimit the content area that you want to read when you click on its icon.

Typical usage : 

You read lengthy in depth articles that are always caught between useless lengthy information like comments or ads. So the scrollbar becomes useless at telling you how much there is left to read in the information that you care about. 

Infometer acts as an information measurer that gives you the same visual clue as the scrollbar about your progress in reading a web page except that you can delimit the specific content to measure.

It will ease your online reading experience as you will read faster and with more focus once you know how much exactly you need to read in a web page.

Features :

★ Gives visual clue like a scrollbar of the progress in a web page except that you delimit the content that is measured.
★ Synces with Chrome Sync. So if you were reading on a computer and had markers set up, if you connect on another computer where chrome is synced, you will have the same thing. It takes 7 seconds to complete a sync cycle.
★ Click on the beginning of the progress bar to find the first marker.
★ Click on the end of the progress bar to find the second marker.
★ The icon has 4 status : 
- ON : the extension is active on the current page.
- OFF (grey) :  the extension is inactive on the current page.
- OFF (red) : the extension doesn't work on this type of page. Certain pages like the chrome store or the chrome pages don't work with the extension.
- ERR : You should reload the current page to make the extension work again.

How to use it ?

1. Click on its icon like you see in the screenshots and it will add a progress bar and two markers in the current page you're viewing.
2. Click on the markers to place them around the content you want to measure.
3. As you scroll, the progress bar at the top will show how much of the measured content has already been scrolled.

To turn off the progress bar, just click again on the icon.                    

擴展基本資訊

名稱 Infometer Infometer
ID aecmbngpoblfijikbmeeehekhmelghgi
官方網址 https://chromewebstore.google.com/detail/infometer/aecmbngpoblfijikbmeeehekhmelghgi
簡介 Infometer helps you measure how much of a web page you have read.
檔案大小 1002 KB
安裝次數 109
目前版本 1.0.3
更新時間 2014-04-24
上架時間 2014-04-24
評分 2.33/5 共 3 次評分
開發者 eloone
付費類型 free
擴展官網 https://github.com/eloone/chrome-infometer
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Infometer",
    "description": "Infometer helps you measure how much of a web page you have read.",
    "version": "1.0.3",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "management",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "back\/ga.js",
            "back\/storage.js",
            "back\/main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "front\/main.css"
            ],
            "js": [
                "front\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "images\/marker.svg",
        "images\/markerdashed.svg",
        "images\/infometer.png"
    ],
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Infometer"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}