Web Page Analysis
Adds buttons to context menu that open page analysis in HTML, CSS validators and PageSpeed service.
Wat is Web Page Analysis?
Web Page Analysis is een Chrome-extensie ontwikkeld door https://inter-net.pro, en de belangrijkste functie is "Adds buttons to context menu that open page analysis in HTML, CSS validators and PageSpeed service.".
Extensie Screenshots
Download het CRX-bestand van de extensie Web Page Analysis
Download Web Page Analysis-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Данное расширение будет полезно для вебмастеров, владельцев и администраторов сайтов, верстальщиков и фронтендеров.
Эта маленькая утилита добавляет в контекстное меню браузера Google Chrome пункты меню, открывающие анализ просматриваемой страницы сайта в сервисах:
- Google PageSpeed (скорость страницы сайта);
- Валидатор HTML (анализ HTML-кода страницы сайта);
- Валидатор CSS (анализ кода всех стилей CSS подключаемых к странице сайта);
- Валидатор микроразметки;
- Проверка иконок сайта;
- Яндекс ИКС.
Наслаждайтесь! Basisinformatie over de Extensie
| Naam | |
| ID | fmfleoecibhnakeklbfnaeobghmgnfja |
| Officiële URL | https://chromewebstore.google.com/detail/web-page-analysis/fmfleoecibhnakeklbfnaeobghmgnfja |
| Beschrijving | Adds buttons to context menu that open page analysis in HTML, CSS validators and PageSpeed service. |
| Bestandsgrootte | 90.04 KB |
| Aantal Installaties | 135 |
| Huidige Versie | 1.1.4 |
| Laatst Bijgewerkt | 2020-02-27 |
| Publicatiedatum | 2020-02-19 |
| Beoordeling | 2.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | https://inter-net.pro |
| Betalingswijze | free |
| Extensiewebsite | https://inter-net.pro/soft/analise-webpage |
| Help Pagina-URL | https://inter-net.pro/soft/analise-webpage |
| Ondersteunde Talen | 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"
} | |