Infometer

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

O que é Infometer?

Infometer é uma extensão do Chrome desenvolvida por eloone, e sua principal característica é "Infometer helps you measure how much of a web page you have read.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Infometer

Baixe arquivos de extensão Infometer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Infometer Infometer
ID aecmbngpoblfijikbmeeehekhmelghgi
URL Oficial https://chromewebstore.google.com/detail/infometer/aecmbngpoblfijikbmeeehekhmelghgi
Descrição Infometer helps you measure how much of a web page you have read.
Tamanho do Arquivo 1002 KB
Contagem de Instalações 109
Versão Atual 1.0.3
Última Atualização 2014-04-24
Data de Publicação 2014-04-24
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor eloone
Tipo de Pagamento free
Site da Extensão https://github.com/eloone/chrome-infometer
Idiomas Suportados 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
}