Time to 60fps

This extension shows the time it takes for a web page to reach 60fps

Time to 60fps क्या है?

Time to 60fps feederror द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension shows the time it takes for a web page to reach 60fps"।

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

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

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

                        Instead of measuring a pages performance based on Dom Interactive/Dom Content Ready or Page Load events. This extension takes a slightly alternative approach and measures it based on when a page reaches a frame rate of 60fps. This time normally aligns with when a page has finished doing all it's loading, parsing and running of HTML, CSS and Javascript.

Just load any page with the extension active and when the page reaches a constant 50-60fps over a full second it will then display the time it took to reach this constant frame rate in seconds. Only 5 digits can be displayed so accuracy may be lost for really slow pages.

Clicking the icon will refresh the page.

Some pages (such as chrome://extensions ) can not be scripted so the timing will never show up.                    

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

नाम Time to 60fps Time to 60fps
ID bipalekffdnpgbcfagbabaoocajncige
आधिकारिक URL https://chromewebstore.google.com/detail/time-to-60fps/bipalekffdnpgbcfagbabaoocajncige
विवरण This extension shows the time it takes for a web page to reach 60fps
फ़ाइल का आकार 10.28 KB
स्थापना संख्या 222
वर्तमान संस्करण 1.1
अंतिम अपडेट 2016-01-03
प्रकाशन तिथि 2016-01-03
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर feederror
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time to 60fps",
    "description": "This extension shows the time it takes for a web page to reach 60fps",
    "version": "1.1",
    "browser_action": {
        "default_icon": "60fps-19x19.png"
    },
    "icons": {
        "48": "60fps-48x48.png",
        "128": "60fps-128x128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "time-to-60fps.js"
            ],
            "run_at": "document_start"
        }
    ]
}