Console Importer

Import JavaScript and CSS resources from console, with one command

Что такое Console Importer?

Console Importer - это расширение Chrome, разработанное Rongjian Zhang, и его основная функция - "Import JavaScript and CSS resources from console, with one command".

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

screenshot

Скачать файл CRX расширения Console Importer

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

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

                        A tool for developers to easily import JS and CSS resources from Chrome console

Source code:
https://github.com/pd4d10/console-importer                    

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

Название Console Importer Console Importer
ID hgajpakhafplebkdljleajgbpdmplhie
Официальный URL https://chromewebstore.google.com/detail/console-importer/hgajpakhafplebkdljleajgbpdmplhie
Описание Import JavaScript and CSS resources from console, with one command
Размер файла 9.55 KB
Количество установок 14,579
Текущая Версия 2.1.0
Последнее Обновление 2022-05-04
Дата публикации 2017-07-30
Рейтинг 4.71/5 Всего 17 оценок
Разработчик Rongjian Zhang
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/pd4d10/console-importer
URL страницы помощи https://github.com/pd4d10/console-importer
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "2.1.0",
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/github.com\/pd4d10\/console-importer",
    "icons": {
        "128": "images\/icon.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "assets\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/*.js"
            ]
        }
    ]
}