Web Time Tracker
Track and analyze your browser usage to help you manage your time better.
Qu'est-ce que Web Time Tracker ?
Web Time Tracker est une extension Chrome développée par 9yearfish, et sa fonction principale est "Track and analyze your browser usage to help you manage your time better.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Web Time Tracker
Téléchargez les fichiers d'extension Web Time Tracker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
We always spend too much time online, so I made a little tool that tracks the time spent per day on each website on the browser. ⭐️You can set a daily usage time limit for your website, beyond which you will not be able to access the site. ⭐️ You will see ⭐️ 1. Time spent browsing on each site, in percentage ⭐️ 2. More or less time spent compared to the previous time period ⭐️ 3. The site consumed the most time. ⭐️ 4. A colorful graphical format tells you the details. We will develop more good features in the future and would like to get your comments and suggestions.
Informations de Base sur l'Extension
Nom | Web Time Tracker |
ID | bjkanoldnecfjjlmkpdidanbbfjgignh |
URL Officiel | https://chromewebstore.google.com/detail/web-time-tracker/bjkanoldnecfjjlmkpdidanbbfjgignh |
Description | Track and analyze your browser usage to help you manage your time better. |
Taille du Fichier | 1.08 MB |
Nombre d'Installations | 42 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2022-04-23 |
Date de Publication | 2022-04-19 |
Développeur | 9yearfish |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://twitter.com/9yearfish |
Langues Prises en Charge | en,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_title__", "version": "0.0.3", "description": "Track and analyze your browser usage to help you manage your time better.", "author": "9yearfish", "homepage_url": "https:\/\/twitter.com\/9yearfish", "default_locale": "en", "action": { "default_icon": { "16": "assets\/time.png", "48": "assets\/time.png", "128": "assets\/time.png" }, "default_title": "__MSG_title__", "default_popup": "popup\/index.html" }, "icons": { "16": "assets\/time.png", "48": "assets\/time.png", "128": "assets\/time.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "js": [ "assets\/content-script-reloader-d5a77d8e.js", "content-scripts\/import-main.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_end" } ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "permissions": [ "tabs", "idle", "storage", "scripting", "alarms", "unlimitedStorage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "content-scripts\/main.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |