CodeBy Web Tools

This is an extension built by CodeBy to help VTEX developers to debug their current in development stores

Что такое CodeBy Web Tools?

CodeBy Web Tools - это расширение Chrome, разработанное https://codeby.global, и его основная функция - "This is an extension built by CodeBy to help VTEX developers to debug their current in development stores".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения CodeBy Web Tools

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

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

                        The goal of CodeBy Web Tools is to show in it's icon what technology the website was built in. Right now, there is support only for VTEX Legacy CMS and VTEX IO, but we have plans in the near future to include support for other ecommerce platforms too.

If you have any questions, want to report a bug or suggest a feature, please email us at [email protected].

This extension was developed by https://codeby.com.br/en.                    

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

Название CodeBy Web Tools CodeBy Web Tools
ID amfpnlnkbkifhmcaeecmocgchpkbnpji
Официальный URL https://chromewebstore.google.com/detail/codeby-web-tools/amfpnlnkbkifhmcaeecmocgchpkbnpji
Описание This is an extension built by CodeBy to help VTEX developers to debug their current in development stores
Размер файла 134 KB
Количество установок 61
Текущая Версия 0.3
Последнее Обновление 2022-02-08
Дата публикации 2021-03-14
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://codeby.global
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://codeby.global
URL страницы помощи https://codeby.global
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodeBy Web Tools",
    "version": "0.3",
    "description": "This is an extension built by CodeBy to help VTEX developers to debug their current in development stores",
    "icons": {
        "16": "images\/codeby-16.png",
        "32": "images\/codeby-32.png",
        "48": "images\/codeby-48.png",
        "128": "images\/codeby-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "background",
        "file:\/\/\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/codeby-16.png",
            "32": "images\/codeby-32.png",
            "48": "images\/codeby-48.png",
            "128": "images\/codeby-128.png"
        },
        "default_title": "Codeby Web Tools",
        "default_popup": "popups\/default.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/check-tech.js"
            ],
            "run_at": "document_end"
        }
    ],
    "author": "Lucas Yamamoto"
}