Social Media / Web Time Tracker
Tells you how much time you're spending/wasting on social media and other websites.
Social Media / Web Time Tracker क्या है?
Social Media / Web Time Tracker https://toolsofourtools.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tells you how much time you're spending/wasting on social media and other websites."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Social Media / Web Time Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Have you ever wondered how much time you are spending on That Social Media Site Which Will Remain Unnamed(*)? This extension will let you know, showing a pie chart of your browser usage today, yesterday, last week, etc. It works by tracking which browser tab is currently focused, or optionally, which tab(s) are visible (open and not minimized). It also will report time the browser is open but not focused. (Like if you're using another program altogether.) This plugin *never* sends data anywhere. Everything stays local on your computer. You can inspect the source code here: https://github.com/djacobow/whttg Versions: 0.0.1 -- initial release, proof of concept 0.0.2 -- minor bugs 0.0.3 -- output formatting 0.0.4 -- column chart option 0.0.5 -- icon, formatting 0.0.6/7 -- change name for better SEO 0.0.8 -- change name and remove references to a certain social media site after copyright take-down 0.0.9 -- remove google charts and replace with chartjs because of Google charts' dynamic loading and use of eval() (*) -- That Social Media Site will remain unnamed because they took down an earlier version of this plugin for alleged trademark infringement.
एक्सटेंशन की मूल जानकारी
नाम | Social Media / Web Time Tracker |
ID | cnmhlhoamppemoniipfhgnlpdepeocbe |
आधिकारिक URL | https://chromewebstore.google.com/detail/social-media-web-time-tra/cnmhlhoamppemoniipfhgnlpdepeocbe |
विवरण | Tells you how much time you're spending/wasting on social media and other websites. |
फ़ाइल का आकार | 775 KB |
स्थापना संख्या | 245 |
वर्तमान संस्करण | 0.0.9 |
अंतिम अपडेट | 2018-04-17 |
प्रकाशन तिथि | 2018-04-17 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://toolsofourtools.org |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://toolsofourtools.org/whttg-about |
गोपनीयता नीति पृष्ठ URL | http://toolsofourtools.org/privacy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Social Media \/ Web Time Tracker", "short_name": "Social Media Time Tracker", "description": "Tells you how much time you're spending\/wasting on social media and other websites.", "author": "Dave Jacobowitz", "options_ui": { "page": "options.html", "chrome_style": true }, "version": "0.0.9", "permissions": [ "storage", "alarms", "tabs" ], "background": { "persistent": false, "scripts": [ "timekeeper.js" ] }, "browser_action": { "default_icon": { "128": "icons\/ic2-128.png" }, "default_title": "Configure Web Time Tracker", "default_popup": "options.html" }, "icons": { "128": "icons\/ic2-128.png", "200": "icons\/ic2-200.png", "400": "icons\/ic2-400.png" }, "applications": { "gecko": { "id": "@whttg" } }, "web_accessible_resources": [ "empty_image.png" ] } |