mirror of
https://codeberg.org/vlw/stadia-avatar.git
synced 2025-09-13 23:23:40 +02:00
Separated client- and server-side features into seperate root folders. Since Stadia Avatar now has two versions (Userscript and Chrome extension). Added core extension functionality. Created a page constructor for extension popup. High probability that I will create a seperate repo for this feature, as it's pretty neat and very useful for future extensions.
12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
import { Page } from "./Page.mjs";
|
|
|
|
export class AvatarURL extends Page {
|
|
|
|
constructor() {
|
|
super(chrome.i18n.getMessage("avatar_set") + " URL");
|
|
|
|
this.appendHTML(`<p>${chrome.i18n.getMessage("avatar_set_url_support")}</p>`);
|
|
this.open();
|
|
}
|
|
|
|
}
|