Google Page Speed Analyzer
This extension will analyze a page using Google Page Speed
Vad är Google Page Speed Analyzer?
Google Page Speed Analyzer är en Chrome-tillägg utvecklad av https://hhomepage.ch, och dess huvudfunktion är "This extension will analyze a page using Google Page Speed".
Tilläggsskärmbilder
Ladda ner Google Page Speed Analyzer-förlängningens CRX-fil
Ladda ner Google Page Speed Analyzer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | fhfeikfenbbbnoloadmllfjfgckcoolc |
Officiell webbadress | https://chrome.google.com/webstore/detail/google-page-speed-analyze/fhfeikfenbbbnoloadmllfjfgckcoolc |
Beskrivning | This extension will analyze a page using Google Page Speed |
Filstorlek | 678 KB |
Antal Installationer | 158 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2017-07-02 |
Publiceringsdatum | 2017-07-02 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://hhomepage.ch |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://hhomepage.ch |
URL till Sekretesspolicy Sidan | https://hhomepage.ch/datenschutzerklarung |
Stödda Språk | 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?*" ] } |