GameJolt Chatterbox
Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.
Vad är GameJolt Chatterbox?
GameJolt Chatterbox är en Chrome-tillägg utvecklad av YLivay, och dess huvudfunktion är "Utilities for GameJolt's chat. Troll control, highlighting, customization, swag.".
Ladda ner GameJolt Chatterbox-förlängningens CRX-fil
Ladda ner GameJolt Chatterbox-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | kmcgnahlpllhlhieodaiifbeeiincihe |
Officiell webbadress | https://chrome.google.com/webstore/detail/gamejolt-chatterbox/kmcgnahlpllhlhieodaiifbeeiincihe |
Beskrivning | Utilities for GameJolt's chat. Troll control, highlighting, customization, swag. |
Filstorlek | 30.68 KB |
Antal Installationer | 79 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2013-08-07 |
Publiceringsdatum | 2013-08-07 |
Betyg | 3.70/5 Totalt 10 Betyg |
Utvecklare | YLivay |
Betalningssätt | free |
Stödda Språk | 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" } } |