First Paint & Page Load Time
First paint time, page load time, to optimize your webpages
什么是First Paint & Page Load Time?
First Paint & Page Load Time是由https://vijaysutrave.com开发的Chrome扩展程序,该扩展的主要功能是“First paint time, page load time, to optimize your webpages”。
扩展截图
下载First Paint & Page Load Time扩展crx文件
下载First Paint & Page Load Time扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Displays the First Paint time in the browser menu. Now you can see page stats like the top ten time consuming requests on the page, the distribution of resources on the page, and other stats like memory, etc, illustrated with pretty looking graphs. Source Code available at : https://github.com/vijaysutrave/chrome-first-paint This can give you insights in reducing your load times and optimising for quicker render times. This extension uses the Resource Timing API and the Performance API in the browser.
扩展基本信息
名称 | First Paint & Page Load Time |
ID | bjkmldgdbbehjahimccnckggoofdommo |
官方URL | https://chromewebstore.google.com/detail/first-paint-page-load-tim/bjkmldgdbbehjahimccnckggoofdommo |
简介 | First paint time, page load time, to optimize your webpages |
文件大小 | 51.18 KB |
安装次数 | 4,259 |
当前版本 | 1.0.3 |
更新时间 | 2017-11-18 |
上架时间 | 2017-11-17 |
评分 | 4.50/5 共14次评分 |
开发者 | https://vijaysutrave.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/vijaysutrave/chrome-first-paint |
帮助页面URL | https://github.com/vijaysutrave/chrome-first-paint |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "First Paint & Page Load Time", "short_name": "First Paint Time", "version": "1.0.3", "description": "First paint time, page load time, to optimize your webpages", "browser_action": { "default_icon": "icons\/timer48.png", "default_popup": "popup.html" }, "icons": { "16": "icons\/timer16.png", "48": "icons\/timer48.png", "128": "icons\/timer128.png" }, "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "domTimes.js" ], "run_at": "document_start" } ] } |