Page Timer

How long have I been on this page?

Cos'è Page Timer?

Page Timer è un'estensione di Chrome sviluppata da [email protected], e la sua funzione principale è "How long have I been on this page?".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Page Timer

Scarica i file di estensione Page Timer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Ever open an email, do a task, then wonder how long that took?  Install this, then just look at the timer next to the URL bar.  It records how long it's been since the URL has changed.  Click to see the last few pages you were on and how long you spent there.

All data is kept locally in ram; no data is sent over the network or saved to disk.


New in version 1.7 (Oct 2017): Display seconds.


Source code:
https://github.com/google/page-timer/                    

Informazioni di Base sull'Estensione

Nome Page Timer Page Timer
ID enljfpkeopdppbphgadibdpodgjhmabm
URL Ufficiale https://chromewebstore.google.com/detail/page-timer/enljfpkeopdppbphgadibdpodgjhmabm
Descrizione How long have I been on this page?
Dimensione del File 32.27 KB
Conteggio Installazioni 7,000
Versione Corrente 1.7
Ultimo Aggiornamento 2017-10-18
Data di Pubblicazione 2017-10-18
Valutazione 4.67/5 Totale 12 Valutazioni
Sviluppatore [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/google/page-timer/
URL della Pagina della Politica sulla Privacy https://github.com/google/page-timer/blob/master/PRIVACY.md
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page Timer",
    "description": "How long have I been on this page?",
    "version": "1.7",
    "author": "[email protected]",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "clock16.png",
        "48": "clock48.png",
        "128": "clock128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "browser-action-19.png",
            "38": "browser-action-38.png"
        }
    },
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html"
}