Dumb Stats
Monitor fun statistics about your web activity with Dumb Stats.
Dumb Stats란 무엇입니까?
Dumb Stats은(는) bekbeis.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Monitor fun statistics about your web activity with Dumb Stats."입니다.
확장 프로그램 스크린샷
Dumb Stats 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Dumb Stats tracks user actions such as clicking, scrolling, typing, and opening pages and calculates fun statistics about these actions. You can know - How many calories you burn by clicking a mouse; - How many meters of web pages you scroll every day; - What novel you could have typed with your number of keypresses; - How much time approximately you have spent browsing internet. [ Please, pay attention ] - Because of the Chrome restrictions, Dumb Stats do not work on the Web Store pages and pages such as “new tab”. In order to see how it works, please, open any other website and try it there. - After installing the extension, reload the previously opened pages if you want the extension to count them as “viewed pages”. Clicks, scroll, and keystrokes are calculated without reloading. - We do not collect or store any of your personal information. Data about the number of clicks, scrolls, keystrokes, and pages viewed is stored in your browser’s local storage. Press the reset button, if you want to clear the previously collected data and set everything to zero. We hope you enjoy Dumb Stats!
확장 프로그램 기본 정보
이름 | Dumb Stats |
ID | daifepjkmeaghpkmnljbmkpacimoagam |
공식 URL | https://chromewebstore.google.com/detail/dumb-stats/daifepjkmeaghpkmnljbmkpacimoagam |
설명 | Monitor fun statistics about your web activity with Dumb Stats. |
파일 크기 | 103 KB |
설치 횟수 | 101 |
현재 버전 | 1.0 |
최근 업데이트 | 2022-07-27 |
출시 날짜 | 2022-07-27 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | bekbeis.dev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Dumb Stats", "version": "1.0", "description": "Monitor fun statistics about your web activity with Dumb Stats.", "permissions": [ "tabs", "scripting", "storage" ], "background": { "service_worker": "background\/index.js", "type": "module" }, "action": { "default_icon": { "16": "\/assets\/icons\/16.png", "24": "\/assets\/icons\/24.png", "32": "\/assets\/icons\/32.png" }, "default_title": "Dumb Stats", "default_popup": "pages\/popup\/index.html" }, "icons": { "16": "\/assets\/icons\/16.png", "32": "\/assets\/icons\/32.png", "128": "\/assets\/icons\/128.png" }, "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "js": [ "content\/import-index.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "content\/index.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |