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”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Pretty Screentime Pretty Screentime
ID nmjaaoddacgkglmpjobghhehgmoajonp
官方網址 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
電子郵箱 eefairay@gmail.com
付費類型 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"
    }
}