Page Stat

Display time usage statistics for accessed pages

Page Stat क्या है?

Page Stat pvpscript द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display time usage statistics for accessed pages"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Page Stat is a browser extension for chrome and firefox that calculates how
much time is spent on websites in general and provides usage statistics for different time intervals, such as *daily*, *weekly*, *monthly*, *yearly* and also *custom defined*. A list of accessed domains is displayed, sorted by usage time in ascending order. Select a specific domain on this list to plot the usage data for it.                    

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

नाम Page Stat Page Stat
ID iifimpgnkpmahfnopiaidbohgepbeggd
आधिकारिक URL https://chromewebstore.google.com/detail/page-stat/iifimpgnkpmahfnopiaidbohgepbeggd
विवरण Display time usage statistics for accessed pages
फ़ाइल का आकार 155 KB
स्थापना संख्या 36
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2020-10-07
प्रकाशन तिथि 2020-10-01
डेवलपर pvpscript
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/pvpscript/page-stat
सहायता पृष्ठ URL https://github.com/pvpscript/page-stat/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Stat",
    "version": "1.0.1",
    "description": "Display time usage statistics for accessed pages",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "alarms",
        "https:\/\/www.google.com\/"
    ],
    "options_ui": {
        "page": "view\/options\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background_scripts\/host.js",
            "background_scripts\/page.js",
            "background_scripts\/utils.js",
            "background_scripts\/validator.js",
            "background_scripts\/listeners_runtime.js",
            "background_scripts\/listeners_tabs.js",
            "background_scripts\/core.js",
            "background_scripts\/alarm.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Page usage statistics",
        "default_popup": "popup\/popup.html"
    }
}