Javascript Injector

Inject javascript to the webpage you are visiting

Что такое Javascript Injector?

Javascript Injector - это расширение Chrome, разработанное Daniel Han, и его основная функция - "Inject javascript to the webpage you are visiting".

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

screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices.

For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.                    

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

Название Javascript Injector Javascript Injector
ID ejnccfcackblkelbafbolcpjfpcmbplg
Официальный URL https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg
Описание Inject javascript to the webpage you are visiting
Размер файла 59.53 KB
Количество установок 2,000
Текущая Версия 1.2
Последнее Обновление 2017-06-16
Дата публикации 2017-06-16
Рейтинг 4.13/5 Всего 8 оценок
Разработчик Daniel Han
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/hex0cter/js-injector
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javascript Injector",
    "author": "Daniel Han",
    "short_name": "JS injector",
    "description": "Inject javascript to the webpage you are visiting",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Javascript Injector",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}