Vue Component Finder

Tool for locate Vue component code.

Что такое Vue Component Finder?

Vue Component Finder - это расширение Chrome, разработанное csonlai, и его основная функция - "Tool for locate Vue component code.".

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

screenshot

Скачать файл CRX расширения Vue Component Finder

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

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

                        vue-component-finder is a Chrome plugin for Vue project, which help developer preview component code module and locate code file in IDE quickly.

You can read https://github.com/csonlai/vue-component-finder for usage detail.                    

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

Название Vue Component Finder Vue Component Finder
ID maldlhiallkfciipjnedanjjpnfaljpl
Официальный URL https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl
Описание Tool for locate Vue component code.
Размер файла 14.28 KB
Количество установок 2,312
Текущая Версия 1.0
Последнее Обновление 2017-10-23
Дата публикации 2017-10-22
Рейтинг 2.13/5 Всего 8 оценок
Разработчик csonlai
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/csonlai/vue-component-finder
URL страницы помощи https://github.com/csonlai/vue-component-finder
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue Component Finder",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Tool for locate Vue component code.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "32": ".\/images\/icon32.png",
        "48": ".\/images\/icon48.png",
        "128": ".\/images\/icon128.png"
    },
    "web_accessible_resources": [
        "css\/index.css",
        "css\/highlight.css"
    ]
}