Approximate ATF

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

什麼是Approximate ATF?

Approximate ATF是由Diego da Hora開發的Chrome擴展程式,該擴展的主要功能是“Obtain advanced web QoS metrics for pages you visit and an approximation of the above-the-fold time!”。

擴展截圖

screenshot

下載Approximate ATF擴展crx文件

下載Approximate ATF擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Approximate ATF Approximate ATF
ID eedmonedcfjniaagehchbkdolbobmfhb
官方網址 https://chrome.google.com/webstore/detail/approximate-atf/eedmonedcfjniaagehchbkdolbobmfhb
簡介 Obtain advanced web QoS metrics for pages you visit and an approximation of the above-the-fold time!
檔案大小 53.59 KB
安裝次數 17
目前版本 1.20
更新時間 2017-12-14
上架時間 2017-12-14
評分 4.67/5 共 3 次評分
開發者 Diego da Hora
付費類型 free
擴展官網 https://newnet.telecom-paristech.fr/index.php/webqoe/
支援的語言 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"
        }
    ]
}