Web Page Analysis

Adds buttons to context menu that open page analysis in HTML, CSS validators and PageSpeed service.

What is Web Page Analysis?

Web Page Analysis is a Chrome extension developed by https://inter-net.pro, and its main feature is "Adds buttons to context menu that open page analysis in HTML, CSS validators and PageSpeed service.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Web Page Analysis Extension CRX File

Download Web Page Analysis 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

                        Данное расширение будет полезно для вебмастеров, владельцев и администраторов сайтов, верстальщиков и фронтендеров.

Эта маленькая утилита добавляет в контекстное меню браузера Google Chrome пункты меню, открывающие анализ просматриваемой страницы сайта в сервисах:
 - Google PageSpeed (скорость страницы сайта);
 - Валидатор HTML (анализ HTML-кода страницы сайта);
 - Валидатор CSS (анализ кода всех стилей CSS подключаемых к странице сайта);
 - Валидатор микроразметки;
 - Проверка иконок сайта;
 - Яндекс ИКС.

Наслаждайтесь!                    

Extension Basic Information

Name Web Page Analysis Web Page Analysis
ID fmfleoecibhnakeklbfnaeobghmgnfja
Official URL https://chromewebstore.google.com/detail/web-page-analysis/fmfleoecibhnakeklbfnaeobghmgnfja
Description Adds buttons to context menu that open page analysis in HTML, CSS validators and PageSpeed service.
File Size 90.04 KB
Installation Count 135
Current Version 1.1.4
Last Updated 2020-02-27
Publish Date 2020-02-19
Rating 2.00/5 Total 1 Ratings
Developer https://inter-net.pro
Payment Type free
Extension Website https://inter-net.pro/soft/analise-webpage
Help Page URL https://inter-net.pro/soft/analise-webpage
Supported Languages en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "author": "Inter-Net Pro",
    "version": "1.1.4",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/analysis_page.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "js\/ctxt_menu.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_icon": "img\/16.png",
        "default_popup": "popup.html"
    },
    "default_locale": "ru",
    "options_page": "options.html"
}