Screen Time
Captures screen time from active pages
什麼是Screen Time?
Screen Time是由mac開發的Chrome擴展程式,該擴展的主要功能是“Captures screen time from active pages”。
擴展截圖
下載Screen Time擴展crx文件
下載Screen Time擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Screen Time for Google Chrome will capture time spent on sites and prepare reports same way as it done in Screen Time iOS feature. Data stored locally and does not sent anywhere. Only active tabs are counted so even if you open bazillion of pages only one at a time is active. Feel free to propose feature requests in github.
擴展基本資訊
名稱 | Screen Time |
ID | plckpjcbdofdpbljigbjkohpfccafged |
官方網址 | https://chromewebstore.google.com/detail/screen-time/plckpjcbdofdpbljigbjkohpfccafged |
簡介 | Captures screen time from active pages |
檔案大小 | 129 KB |
安裝次數 | 233 |
目前版本 | 1.0.0 |
更新時間 | 2020-12-12 |
上架時間 | 2020-12-08 |
評分 | 5.00/5 共 1 次評分 |
開發者 | mac |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/mac2000/screentime |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Screen Time", "version": "1.0.0", "description": "Captures screen time from active pages", "short_name": "screentime", "permissions": [ "tabs", "storage", "notifications" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Does a thing when you do a thing", "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } } |