Code Injector

Inject your code (html, css, js) into page.

Что такое Code Injector?

Code Injector - это расширение Chrome, разработанное dmitry.pechkovsky, и его основная функция - "Inject your code (html, css, js) into page.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Inject your own code (html, css, js) into any page.
Customize, configure, parse any page!

What' new in 1.13:
- Libraries!

What' new in 1.14:
- Bugfixes.                    

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

Название Code Injector Code Injector
ID fehfokkkkeamcfiaogfdkkpoblipkmbd
Официальный URL https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd
Описание Inject your code (html, css, js) into page.
Размер файла 399 KB
Количество установок 1,000
Текущая Версия 1.14
Последнее Обновление 2019-03-08
Дата публикации 2019-03-08
Рейтинг 3.42/5 Всего 19 оценок
Разработчик dmitry.pechkovsky
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Injector",
    "description": "Inject your code (html, css, js) into page.",
    "manifest_version": 2,
    "version": "1.14",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "permissions": [
        "downloads",
        "storage",
        "unlimitedStorage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Code Injector",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "functions.js",
                "config.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}