Google Page Speed Analyzer

This extension will analyze a page using Google Page Speed

Что такое Google Page Speed Analyzer?

Google Page Speed Analyzer - это расширение Chrome, разработанное https://hhomepage.ch, и его основная функция - "This extension will analyze a page using Google Page Speed".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Google Page Speed Analyzer

Скачайте файлы расширений 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                    

Основная информация о расширении

Название Google Page Speed Analyzer Google Page Speed Analyzer
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?*"
    ]
}