GameJolt Chatterbox

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

Cos'è GameJolt Chatterbox?

GameJolt Chatterbox è un'estensione di Chrome sviluppata da YLivay, e la sua funzione principale è "Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.".

Scarica il file CRX dell'estensione GameJolt Chatterbox

Scarica i file di estensione GameJolt Chatterbox in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GameJolt Chatterbox GameJolt Chatterbox
ID kmcgnahlpllhlhieodaiifbeeiincihe
URL Ufficiale https://chrome.google.com/webstore/detail/gamejolt-chatterbox/kmcgnahlpllhlhieodaiifbeeiincihe
Descrizione Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.
Dimensione del File 30.68 KB
Conteggio Installazioni 79
Versione Corrente 1.0
Ultimo Aggiornamento 2013-08-07
Data di Pubblicazione 2013-08-07
Valutazione 3.70/5 Totale 10 Valutazioni
Sviluppatore YLivay
Tipo di Pagamento free
Lingue Supportate 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"
    }
}