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

Pretty Screentime 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}