Semantic HTML Viewer

Chrome extension to reveal the usage of semantic HTML tags on any website.

Что такое Semantic HTML Viewer?

Semantic HTML Viewer - это расширение Chrome, разработанное Tiago Ferreira, и его основная функция - "Chrome extension to reveal the usage of semantic HTML tags on any website.".

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

screenshot

Скачать файл CRX расширения Semantic HTML Viewer

Скачайте файлы расширений Semantic HTML Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Reveal the semantic HTML used by any website.                    

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

Название Semantic HTML Viewer Semantic HTML Viewer
ID glapikbnefnagjolgppjefchjkjffhog
Официальный URL https://chrome.google.com/webstore/detail/semantic-html-viewer/glapikbnefnagjolgppjefchjkjffhog
Описание Chrome extension to reveal the usage of semantic HTML tags on any website.
Размер файла 316 KB
Количество установок 1,000
Текущая Версия 0.0.3
Последнее Обновление 2019-09-30
Дата публикации 2019-09-30
Рейтинг 4.50/5 Всего 2 оценок
Разработчик Tiago Ferreira
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Semantic HTML Viewer",
    "version": "0.0.3",
    "description": "Chrome extension to reveal the usage of semantic HTML tags on any website.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "36": "images\/android-icon-36x36.png",
            "48": "images\/android-icon-48x48.png",
            "72": "images\/android-icon-72x72.png",
            "96": "images\/android-icon-96x96.png",
            "144": "images\/android-icon-144x144.png",
            "192": "images\/android-icon-192x192.png"
        }
    },
    "icons": {
        "36": "images\/android-icon-36x36.png",
        "48": "images\/android-icon-48x48.png",
        "72": "images\/android-icon-72x72.png",
        "96": "images\/android-icon-96x96.png",
        "144": "images\/android-icon-144x144.png",
        "192": "images\/android-icon-192x192.png"
    },
    "manifest_version": 2
}