Approximate ATF

Obtain advanced web QoS metrics for pages you visit and an approximation of the above-the-fold time!

Approximate ATF là gì?

Approximate ATF là một tiện ích mở rộng Chrome được phát triển bởi Diego da Hora, và tính năng chính của nó là "Obtain advanced web QoS metrics for pages you visit and an approximation of the above-the-fold time!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Approximate ATF

Tải xuống các tệp mở rộng Approximate ATF dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        View results by opening the Developer console (More tools -> Developer Tools -> Console).
This plugin runs on every page and triggers after pages finish loading. It measures advanced web quality metrics show results on the console view, with options to save results to disk. It calculates the time instant metrics: DOM, PLT (onload), and ATF load time. It also calculates time integral metrics, similar in spirit to Google's SpeedIndex, but measuring load completion of objects (ObjectIndex), bytes (ByteIndex) and images (ImageIndex). The relation between these metrics and perceived quality can be found in our tech-report "Narrowing the gap between QoS metrics andWeb QoE using Above-the-fold metrics", available in our project page: http://perso.telecom-paristech.fr/~drossi/index.php?n=Dataset.WebMOS

This plugin is open-source and the code is available at: https://github.com/TeamRossi/ATF-chrome-plugin

Version: 1.12
- Added option to save log to file, with different verbosity levels.

Version: 1.11
- Added option's menu to configure plugin verbosity.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Approximate ATF Approximate ATF
ID eedmonedcfjniaagehchbkdolbobmfhb
URL Chính Thức https://chrome.google.com/webstore/detail/approximate-atf/eedmonedcfjniaagehchbkdolbobmfhb
Mô tả Obtain advanced web QoS metrics for pages you visit and an approximation of the above-the-fold time!
Kích Thước Tệp 53.59 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.20
Cập Nhật Lần Cuối 2017-12-14
Ngày Phát Hành 2017-12-14
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Diego da Hora
Loại Thanh Toán free
Trang Web Mở Rộng https://newnet.telecom-paristech.fr/index.php/webqoe/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Approximate ATF",
    "short_name": "ATF",
    "version": "1.20",
    "permissions": [
        "activeTab",
        "webNavigation",
        "debugger",
        "storage"
    ],
    "icons": {
        "128": "ATF128.png"
    },
    "options_page": "options.html",
    "description": "Obtain advanced web QoS metrics for pages you visit and an approximation of the above-the-fold time!",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "atfindex.js",
                "FileSaver.js"
            ],
            "run_at": "document_start"
        }
    ]
}