Google Page Speed Analyzer
This extension will analyze a page using Google Page Speed
What is Google Page Speed Analyzer?
Google Page Speed Analyzer is a Chrome extension developed by https://hhomepage.ch, and its main feature is "This extension will analyze a page using Google Page Speed".
Extension Screenshots
Download Google Page Speed Analyzer Extension CRX File
Download Google Page Speed Analyzer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | fhfeikfenbbbnoloadmllfjfgckcoolc |
| Official URL | https://chrome.google.com/webstore/detail/google-page-speed-analyze/fhfeikfenbbbnoloadmllfjfgckcoolc |
| Description | This extension will analyze a page using Google Page Speed |
| File Size | 678 KB |
| Installation Count | 158 |
| Current Version | 1.1 |
| Last Updated | 2017-07-02 |
| Publish Date | 2017-07-02 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | https://hhomepage.ch |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://hhomepage.ch |
| Privacy Policy Page URL | https://hhomepage.ch/datenschutzerklarung |
| Supported Languages | 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?*"
]
} | |