Browser Screen Time

Keep track of the amount of time you spend on the internet

Browser Screen Time क्या है?

Browser Screen Time aaaeka द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keep track of the amount of time you spend on the internet"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Browser Screen Time एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Keep track of the amount of time spent on the internet with this simple extension.

The information is displayed in a simple chart to make viewing time spent easy. You can see time spent in a single day or a specific interval of time.

This add-on is meant to fix the problems with the "Mind the time" add-on. For example, watching videos will not stop the timer from running.

Help develop browser screen time: https://github.com/aaaeka/browser-screen-time                    

एक्सटेंशन की मूल जानकारी

नाम Browser Screen Time Browser Screen Time
ID nlkcecddkejakmaipagbcemeohfomedn
आधिकारिक URL https://chromewebstore.google.com/detail/browser-screen-time/nlkcecddkejakmaipagbcemeohfomedn
विवरण Keep track of the amount of time you spend on the internet
फ़ाइल का आकार 757 KB
स्थापना संख्या 9,943
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2023-09-15
प्रकाशन तिथि 2021-12-15
रेटिंग 4.63/5 कुल 8 रेटिंग्स
डेवलपर aaaeka
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/aaaeka/browser-screen-time
सहायता पृष्ठ URL https://github.com/aaaeka/browser-screen-time
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Browser Screen Time",
    "short_name": "Screen Time",
    "version": "1.2.0",
    "description": "Keep track of the amount of time you spend on the internet",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Screen Time",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/16px.png",
            "32": "assets\/icons\/32px.png",
            "64": "assets\/icons\/64px.png",
            "128": "assets\/icons\/128px.png",
            "256": "assets\/icons\/256px.png",
            "512": "assets\/icons\/512px.png",
            "1024": "assets\/icons\/1024px.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "videoCheck.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "assets\/icons\/16px.png",
        "32": "assets\/icons\/32px.png",
        "64": "assets\/icons\/64px.png",
        "128": "assets\/icons\/128px.png",
        "256": "assets\/icons\/256px.png",
        "512": "assets\/icons\/512px.png",
        "1024": "assets\/icons\/1024px.png"
    },
    "permissions": [
        "storage",
        "idle",
        "tabs",
        "notifications"
    ],
    "manifest_version": 3
}