GameJolt Chatterbox
Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.
Was ist GameJolt Chatterbox?
GameJolt Chatterbox ist eine Chrome-Erweiterung, die von YLivay entwickelt wurde, und ihr Hauptmerkmal ist "Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.".
GameJolt Chatterbox-Erweiterungs-CRX-Datei herunterladen
Laden Sie GameJolt Chatterbox-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | kmcgnahlpllhlhieodaiifbeeiincihe |
Offizielle URL | https://chrome.google.com/webstore/detail/gamejolt-chatterbox/kmcgnahlpllhlhieodaiifbeeiincihe |
Beschreibung | Utilities for GameJolt's chat. Troll control, highlighting, customization, swag. |
Dateigröße | 30.68 KB |
Installationsanzahl | 79 |
Aktuelle Version | 1.0 |
Letztes Update | 2013-08-07 |
Veröffentlichungsdatum | 2013-08-07 |
Bewertung | 3.70/5 Insgesamt 10 Bewertungen |
Entwickler | YLivay |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |