Infometer

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

¿Qué es Infometer?

Infometer es una extensión de Chrome desarrollada por eloone, y su función principal es "Infometer helps you measure how much of a web page you have read.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Infometer

Descarga archivos de extensión Infometer 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

                        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.                    

Información Básica de la Extensión

Nombre Infometer Infometer
ID aecmbngpoblfijikbmeeehekhmelghgi
URL Oficial https://chromewebstore.google.com/detail/infometer/aecmbngpoblfijikbmeeehekhmelghgi
Descripción Infometer helps you measure how much of a web page you have read.
Tamaño del Archivo 1002 KB
Cantidad de Instalaciones 109
Versión Actual 1.0.3
Última Actualización 2014-04-24
Fecha de Publicación 2014-04-24
Calificación 2.33/5 Total de 3 Calificaciones
Desarrollador eloone
Tipo de Pago free
Sitio Web de la Extensión https://github.com/eloone/chrome-infometer
Idiomas Soportados 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
}