Code Injector

Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.

Что такое Code Injector?

Code Injector - это расширение Chrome, разработанное Melwyn Pawar, и его основная функция - "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.".

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

screenshot
screenshot

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

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

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

                        Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages to make design and developmental decisions quickly.                    

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

Название Code Injector Code Injector
ID ffpbejkllpoglbeeabibelceofidjfhk
Официальный URL https://chrome.google.com/webstore/detail/code-injector/ffpbejkllpoglbeeabibelceofidjfhk
Описание Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.
Размер файла 293 KB
Количество установок 121
Текущая Версия 1.4
Последнее Обновление 2017-12-21
Дата публикации 2017-12-21
Рейтинг 1.00/5 Всего 1 оценок
Разработчик Melwyn Pawar
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.example.com\/*"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "allLibs.js"
            ],
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "description": "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.",
    "icons": {
        "128": "l1.png",
        "16": "icon.png",
        "48": "l2.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Script Injector"
    },
    "web_accessible_resources": [
        "images\/pagebreak.png",
        "images\/pagebreak_alone.png"
    ],
    "manifest_version": 2,
    "name": "Code Injector",
    "permissions": [
        "tabs",
        "",
        "background"
    ],
    "version": "1.4"
}