Pretty Screentime
Reports Screen Time data of your favourite websites
什么是Pretty Screentime?
Pretty Screentime是由Immanuel Ifere开发的Chrome扩展程序,该扩展的主要功能是“Reports Screen Time data of your favourite websites”。
扩展截图
下载Pretty Screentime扩展crx文件
下载Pretty Screentime扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Reports Screen Time data of your favourite websites. Initially built for my friends and I, I hope it can be of use to you and your productivity. It's very easy to use. 扩展基本信息
| 名称 | |
| ID | nmjaaoddacgkglmpjobghhehgmoajonp |
| 官方URL | https://chromewebstore.google.com/detail/pretty-screentime/nmjaaoddacgkglmpjobghhehgmoajonp |
| 简介 | Reports Screen Time data of your favourite websites |
| 文件大小 | 15.36 MB |
| 安装次数 | 183 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2020-10-15 |
| 上架时间 | 2020-10-15 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | Immanuel Ifere |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Pretty Screentime",
"description": "Reports Screen Time data of your favourite websites",
"version": "1.0.0",
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.netflix.com\/*",
"*:\/\/*.facebook.com\/*",
"*:\/\/*.instagram.com\/*",
"*:\/\/*.twitter.com\/*",
"*:\/\/*.medium.com\/*",
"*:\/\/*.linkedin.com\/*",
"*:\/\/*.slack.com\/*",
"*:\/\/*.spotify.com\/*",
"*:\/\/*.reddit.com\/*",
"*:\/\/*.twitch.com\/*",
"*:\/\/*.tumblr.com\/*",
"*:\/\/*.discord.com\/*",
"*:\/\/*.amazon.com\/*",
"*:\/\/*.stackoverflow.com\/*",
"*:\/\/*.leetcode.com\/*",
"*:\/\/*.pinterest.com\/*",
"*:\/\/*.quora.com\/*"
],
"js": [
"server.js",
"jquery-3.5.1.js"
]
}
],
"background": {
"scripts": [
"append.js"
]
},
"icons": {
"16": "20.png",
"48": "48.png",
"128": "128.png"
},
"permissions": [
"storage"
],
"browser_action": {
"default_icon": "20.png",
"default_popup": "index.html"
}
} | |