Web Timer
Keep track of how you spend your time on the web.
Cos'è Web Timer?
Web Timer è un'estensione di Chrome sviluppata da DK, e la sua funzione principale è "Keep track of how you spend your time on the web.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Web Timer
Scarica i file di estensione Web 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
Web Timer is a simple and intuitive extension that lets you keep track of how you're spending your time on the web. Web Timer keeps track of the tab that you are actively using and updates its stats every 3 seconds. Features: - Helps you visualize the time you're spending by displaying the data in a pie chart - Keeps track of stats for today, daily average, and all-time - Stops counting if your machine is idle for more than 30 seconds - Only counts time when Chrome has focus - Shows the number of minutes spent on current website over the icon - Easily share your Web Timer stats with friends Instructions: - Use the options page to avoid tracking certain sites Note: I originally sold the extension (https://chrome.google.com/webstore/detail/web-timer/ggnjbdfgigejghknieofeahaknkjafim?hl=en) but it seems that the buyer is injecting redirects and other suspicious behavior so I'm uploading a clean copy. The source code for this extension is at https://github.com/dskang/webtimer
Informazioni di Base sull'Estensione
Nome | Web Timer |
ID | efkkjffdefaaioagghcaflicdajfhceo |
URL Ufficiale | https://chromewebstore.google.com/detail/web-timer/efkkjffdefaaioagghcaflicdajfhceo |
Descrizione | Keep track of how you spend your time on the web. |
Dimensione del File | 24.12 KB |
Conteggio Installazioni | 8,199 |
Versione Corrente | 1.4.9 |
Ultimo Aggiornamento | 2020-08-07 |
Data di Pubblicazione | 2017-07-25 |
Valutazione | 4.36/5 Totale 36 Valutazioni |
Sviluppatore | DK |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Timer", "version": "1.4.9", "description": "Keep track of how you spend your time on the web.", "icons": { "128": "icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "idle", "tabs" ], "browser_action": { "default_title": "Web Timer", "default_icon": "icon_19.png", "default_popup": "popup.html" }, "options_page": "options.html", "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com; object-src 'self'" } |