Web Tracing Framework

Rich tools for instrumenting, analyzing, and visualizing web apps. Make your app jank-free at 60fps!

Web Tracing Frameworkคืออะไร?

Web Tracing Framework เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://google.github.io/tracing-framework และคุณลักษณะหลักของมันคือ "Rich tools for instrumenting, analyzing, and visualizing web apps. Make your app jank-free at 60fps!"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Tracing Framework

ดาวน์โหลดไฟล์ส่วนขยาย Web Tracing Framework ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The Web Tracing Framework is a collection of libraries, tools, and scripts aimed at web developers trying to write large, performance-sensitive Javascript applications. It's designed to be used in conjunction with the built-in development tools of browsers but goes far beyond what they usually support at the cost of some user setup time.

This is a Chrome extension that makes it easy to use the Web Tracing Framework on your pages and gathers additional information from Chrome such as garbage collection events. It is designed to be used in conjunction with user instrumentation.

For more information on the Web Tracing Framework and how to get started, see: http://google.github.io/tracing-framework

NOTE: until Chrome bug 158234 is fixed the timing information on Chrome/Windows is incorrect. See more known issues at https://github.com/google/tracing-framework/blob/master/KNOWN_ISSUES.md                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Web Tracing Framework Web Tracing Framework
ID gmdhhnlkjmknaopofnadmoamhmnlicme
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-tracing-framework/gmdhhnlkjmknaopofnadmoamhmnlicme
คำอธิบาย Rich tools for instrumenting, analyzing, and visualizing web apps. Make your app jank-free at 60fps!
ขนาดไฟล์ 1.3 MB
จำนวนการติดตั้ง 4,430
เวอร์ชันปัจจุบัน 2017.10.20.1
อัปเดตครั้งล่าสุด 2017-10-20
วันที่เผยแพร่ 2017-10-20
คะแนน 3.64/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา https://google.github.io/tracing-framework
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://google.github.io/tracing-framework/
URL หน้าช่วยเหลือ https://github.com/google/tracing-framework/issues
URL หน้านโยบายความเป็นส่วนตัว https://www.google.com/policies/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2017.10.20.1",
    "minimum_chrome_version": "23",
    "homepage_url": "https:\/\/github.com\/google\/tracing-framework",
    "offline_enabled": true,
    "incognito": "split",
    "permissions": [
        "chrome:\/\/favicon\/",
        "cookies",
        "debugger",
        "fileBrowserHandler",
        "management",
        "storage",
        "tabs",
        "unlimitedStorage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "*:\/\/*\/*"
    ],
    "requirements": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/apis.google.com https:\/\/www.google.com https:\/\/docs.google.com https:\/\/www-onepick-opensocial.googleusercontent.com https:\/\/www.googleapis.com; object-src 'self'",
    "browser_action": {
        "default_icon": {
            "19": "assets\/icons\/pageAction19.png",
            "38": "assets\/icons\/pageAction38.png"
        },
        "default_title": "Web Tracing Framework",
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": "wtf"
    },
    "icons": {
        "16": "assets\/icons\/wtf-16.png",
        "32": "assets\/icons\/wtf-32.png",
        "48": "assets\/icons\/wtf-48.png",
        "128": "assets\/icons\/wtf-128.png"
    },
    "file_browser_handlers": [
        {
            "id": "open",
            "default_title": "View in WTF",
            "file_filters": [
                "filesystem:*.wtf-calls",
                "filesystem:*.wtf-json",
                "filesystem:*.wtf-trace"
            ]
        }
    ],
    "name": "Web Tracing Framework",
    "description": "Rich tools for instrumenting, analyzing, and visualizing web apps. Make your app jank-free at 60fps!",
    "web_accessible_resources": [
        "third_party\/falafel.js",
        "wtf-call-tracing.js",
        "wtf-process.js",
        "wtf_trace_web_js_compiled.js"
    ],
    "background": {
        "scripts": [
            "uri.js",
            "options.js",
            "debugger.js",
            "tracer.js",
            "injectedtab.js",
            "extension.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "wtf-injector.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}