Google Page Speed Analyzer
This extension will analyze a page using Google Page Speed
什么是Google Page Speed Analyzer?
Google Page Speed Analyzer是由https://hhomepage.ch开发的Chrome扩展程序,该扩展的主要功能是“This extension will analyze a page using Google Page Speed”。
扩展截图
下载Google Page Speed Analyzer扩展crx文件
下载Google Page Speed Analyzer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension gives you a quick and easy way to
- check the google page speed score of a website
- directly download optimized images to speed up your website
- display images sorted by filesize 扩展基本信息
| 名称 | |
| ID | fhfeikfenbbbnoloadmllfjfgckcoolc |
| 官方URL | https://chrome.google.com/webstore/detail/google-page-speed-analyze/fhfeikfenbbbnoloadmllfjfgckcoolc |
| 简介 | This extension will analyze a page using Google Page Speed |
| 文件大小 | 678 KB |
| 安装次数 | 158 |
| 当前版本 | 1.1 |
| 更新时间 | 2017-07-02 |
| 上架时间 | 2017-07-02 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://hhomepage.ch |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://hhomepage.ch |
| 隐私政策页面URL | https://hhomepage.ch/datenschutzerklarung |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Google Page Speed Analyzer",
"description": "This extension will analyze a page using Google Page Speed",
"version": "1.1",
"icons": {
"16": "PS_16.png",
"48": "PS_48.png",
"128": "PS_128.png"
},
"browser_action": {
"default_icon": "PS_48.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"jquery-3.2.1.js",
"popup.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"content_security_policy": "script-src 'self' https:\/\/www.googleapis.com; object-src 'self'",
"permissions": [
"tabs",
"http:\/\/localhost\/",
"http:\/\/*\/*",
"https:\/\/*\/*",
"https:\/\/www.googleapis.com\/pagespeedonline\/v2\/runPagespeed?*"
]
} | |