Pretty Screentime

Reports Screen Time data of your favourite websites

Pretty Screentimeคืออะไร?

Pretty Screentime เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Immanuel Ifere และคุณลักษณะหลักของมันคือ "Reports Screen Time data of your favourite websites"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pretty Screentime

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}