Web Page Analysis
Adds buttons to context menu that open page analysis in HTML, CSS validators and PageSpeed service.
Qu'est-ce que Web Page Analysis ?
Web Page Analysis est une extension Chrome développée par https://inter-net.pro, et sa fonction principale est "Adds buttons to context menu that open page analysis in HTML, CSS validators and PageSpeed service.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Web Page Analysis
Téléchargez les fichiers d'extension Web Page Analysis au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Данное расширение будет полезно для вебмастеров, владельцев и администраторов сайтов, верстальщиков и фронтендеров. Эта маленькая утилита добавляет в контекстное меню браузера Google Chrome пункты меню, открывающие анализ просматриваемой страницы сайта в сервисах: - Google PageSpeed (скорость страницы сайта); - Валидатор HTML (анализ HTML-кода страницы сайта); - Валидатор CSS (анализ кода всех стилей CSS подключаемых к странице сайта); - Валидатор микроразметки; - Проверка иконок сайта; - Яндекс ИКС. Наслаждайтесь!
Informations de Base sur l'Extension
Nom | Web Page Analysis |
ID | fmfleoecibhnakeklbfnaeobghmgnfja |
URL Officiel | 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. |
Taille du Fichier | 90.04 KB |
Nombre d'Installations | 135 |
Version Actuelle | 1.1.4 |
Dernière Mise à Jour | 2020-02-27 |
Date de Publication | 2020-02-19 |
Évaluation | 2.00/5 Total 1 Évaluations |
Développeur | https://inter-net.pro |
Type de Paiement | free |
Site Web de l'Extension | https://inter-net.pro/soft/analise-webpage |
URL de la Page d'Aide | https://inter-net.pro/soft/analise-webpage |
Langues Prises en Charge | 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" } |