Google Page Speed Analyzer

This extension will analyze a page using Google Page Speed

O que é Google Page Speed Analyzer?

Google Page Speed Analyzer é uma extensão do Chrome desenvolvida por https://hhomepage.ch, e sua principal característica é "This extension will analyze a page using Google Page Speed".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Google Page Speed Analyzer

Baixe arquivos de extensão Google Page Speed Analyzer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Google Page Speed Analyzer Google Page Speed Analyzer
ID fhfeikfenbbbnoloadmllfjfgckcoolc
URL Oficial https://chrome.google.com/webstore/detail/google-page-speed-analyze/fhfeikfenbbbnoloadmllfjfgckcoolc
Descrição This extension will analyze a page using Google Page Speed
Tamanho do Arquivo 678 KB
Contagem de Instalações 158
Versão Atual 1.1
Última Atualização 2017-07-02
Data de Publicação 2017-07-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://hhomepage.ch
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://hhomepage.ch
URL da Página de Política de Privacidade https://hhomepage.ch/datenschutzerklarung
Idiomas Suportados 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?*"
    ]
}