Browser Screen Time
Keep track of the amount of time you spend on the internet
Browser Screen Timeとは何ですか?
Browser Screen Timeはaaaekaによって開発されたChromeの拡張機能で、その主な機能は「Keep track of the amount of time you spend on the internet」です。
拡張機能のスクリーンショット
Browser Screen Time拡張機能のCRXファイルをダウンロード
Browser Screen Time拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Keep track of the amount of time spent on the internet with this simple extension. The information is displayed in a simple chart to make viewing time spent easy. You can see time spent in a single day or a specific interval of time. This add-on is meant to fix the problems with the "Mind the time" add-on. For example, watching videos will not stop the timer from running. Help develop browser screen time: https://github.com/aaaeka/browser-screen-time
拡張機能の基本情報
名前 | Browser Screen Time |
ID | nlkcecddkejakmaipagbcemeohfomedn |
公式URL | https://chromewebstore.google.com/detail/browser-screen-time/nlkcecddkejakmaipagbcemeohfomedn |
説明 | Keep track of the amount of time you spend on the internet |
ファイルサイズ | 757 KB |
インストール数 | 9,943 |
現在のバージョン | 1.2.0 |
最終更新日 | 2023-09-15 |
公開日 | 2021-12-15 |
評価 | 4.63/5 合計 8 レビュー |
開発者 | aaaeka |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/aaaeka/browser-screen-time |
ヘルプページのURL | https://github.com/aaaeka/browser-screen-time |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Browser Screen Time", "short_name": "Screen Time", "version": "1.2.0", "description": "Keep track of the amount of time you spend on the internet", "background": { "service_worker": "background.js" }, "action": { "default_title": "Screen Time", "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/16px.png", "32": "assets\/icons\/32px.png", "64": "assets\/icons\/64px.png", "128": "assets\/icons\/128px.png", "256": "assets\/icons\/256px.png", "512": "assets\/icons\/512px.png", "1024": "assets\/icons\/1024px.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "videoCheck.js" ], "run_at": "document_idle", "all_frames": true } ], "icons": { "16": "assets\/icons\/16px.png", "32": "assets\/icons\/32px.png", "64": "assets\/icons\/64px.png", "128": "assets\/icons\/128px.png", "256": "assets\/icons\/256px.png", "512": "assets\/icons\/512px.png", "1024": "assets\/icons\/1024px.png" }, "permissions": [ "storage", "idle", "tabs", "notifications" ], "manifest_version": 3 } |