GameJolt Chatterbox

Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.

Что такое GameJolt Chatterbox?

GameJolt Chatterbox - это расширение Chrome, разработанное YLivay, и его основная функция - "Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.".

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

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

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

                        Helps survive GameJolt's chat by giving some utility functions.
For now theres only the /mute command:
/mute Username.

To activate, log on to gamejolt and press GameJolt's icon in the address bar.                    

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

Название GameJolt Chatterbox GameJolt Chatterbox
ID kmcgnahlpllhlhieodaiifbeeiincihe
Официальный URL https://chrome.google.com/webstore/detail/gamejolt-chatterbox/kmcgnahlpllhlhieodaiifbeeiincihe
Описание Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.
Размер файла 30.68 KB
Количество установок 79
Текущая Версия 1.0
Последнее Обновление 2013-08-07
Дата публикации 2013-08-07
Рейтинг 3.70/5 Всего 10 оценок
Разработчик YLivay
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GameJolt Chatterbox",
    "description": "Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "*:\/\/*.gamejolt.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "*:\/\/*.gamejolt.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject_chatterbox.js"
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/gj_icon_16.png",
            "19": "images\/gj_icon_19.png",
            "38": "images\/gj_icon_38.png",
            "48": "images\/gj_icon_48.png",
            "128": "images\/gj_icon_128.png"
        },
        "default_title": "GameJolt Chatterbox"
    }
}