Web Time Tracker
Track and analyze your browser usage to help you manage your time better.
Web Time Tracker क्या है?
Web Time Tracker 9yearfish द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Track and analyze your browser usage to help you manage your time better."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Web Time Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Web Time Tracker |
ID | bjkanoldnecfjjlmkpdidanbbfjgignh |
आधिकारिक URL | https://chromewebstore.google.com/detail/web-time-tracker/bjkanoldnecfjjlmkpdidanbbfjgignh |
विवरण | Track and analyze your browser usage to help you manage your time better. |
फ़ाइल का आकार | 1.08 MB |
स्थापना संख्या | 42 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2022-04-23 |
प्रकाशन तिथि | 2022-04-19 |
डेवलपर | 9yearfish |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://twitter.com/9yearfish |
समर्थित भाषाएँ | 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:\/\/*\/*" ] } ] } |