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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tells you how much time you're spending/wasting on social media and other websites."입니다.
확장 프로그램 스크린샷
Social Media / Web Time Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |