Keyword Replacer

Replace keywords with a set text when pressing the selected combination of keys.

Что такое Keyword Replacer?

Keyword Replacer - это расширение Chrome, разработанное Stilling, и его основная функция - "Replace keywords with a set text when pressing the selected combination of keys.".

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

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

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

                                            

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

Название Keyword Replacer Keyword Replacer
ID hiifjfgimklijlmlikbpokdecbekdldm
Официальный URL https://chromewebstore.google.com/detail/keyword-replacer/hiifjfgimklijlmlikbpokdecbekdldm
Описание Replace keywords with a set text when pressing the selected combination of keys.
Размер файла 637 KB
Количество установок 58
Текущая Версия 0.1.4
Последнее Обновление 2016-03-24
Дата публикации 2016-03-24
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Stilling
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyword Replacer",
    "manifest_version": 2,
    "version": "0.1.4",
    "author": "Mitch @BlameMitch",
    "short_name": "Keyword Replacer",
    "description": "Replace keywords with a set text when pressing the selected combination of keys.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Options"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "notifications",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.js",
                "js\/moment.js",
                "js\/scripts.js"
            ]
        }
    ]
}