Kode Injector

Helps to inject JavaScript and CSS from local files

Что такое Kode Injector?

Kode Injector - это расширение Chrome, разработанное maximtop, и его основная функция - "Helps to inject JavaScript and CSS from local files".

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

screenshot
screenshot

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

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

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

                        Kode Injector helps you to modify sites you are visiting with you browser via injecting JavaScript or CSS code.

IMPORTANT:
This extension need "Allow access to file URLs" to be activated
Links to local files should have "file" protocol, for example: "file:///index.js"

Please fill free to submit your issues here: https://gitlab.com/maximtop/kode-injector/issues                    

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

Название Kode Injector Kode Injector
ID fgdehkdkmaiedleekbjpfoicpmodbicg
Официальный URL https://chromewebstore.google.com/detail/kode-injector/fgdehkdkmaiedleekbjpfoicpmodbicg
Описание Helps to inject JavaScript and CSS from local files
Размер файла 547 KB
Количество установок 237
Текущая Версия 0.7.4
Последнее Обновление 2023-05-01
Дата публикации 2018-03-06
Разработчик maximtop
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://gitlab.com/maximtop/kode-injector
URL страницы помощи https://gitlab.com/maximtop/kode-injector/issues
Поддерживаемые языки en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "options_page": "options.html",
    "icons": {
        "16": "assets\/img\/icon-16.png",
        "32": "assets\/img\/icon-32.png",
        "48": "assets\/img\/icon-48.png",
        "128": "assets\/img\/icon-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/img\/icon-16.png",
            "32": "assets\/img\/icon-32.png"
        },
        "default_title": "__MSG_name__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "storage"
    ],
    "version": "0.7.4"
}