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.
22 lines
No EOL
610 B
HTML
22 lines
No EOL
610 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="assets/css/popup.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img id="myAvatar" src="https://gravatar.com/avatar/default?s=80"/>
|
|
</header>
|
|
<ol>
|
|
<li button="avatar:url" title="__MSG_avatar_set__ URL">
|
|
<img src="assets/img/icon_set_url.svg"/>
|
|
<p>__MSG_avatar_set__ URL</p>
|
|
</li>
|
|
<li button="avatar:gravatar" title="__MSG_avatar_set__ Gravatar">
|
|
<img src="assets/img/icon_set_gravatar.svg"/>
|
|
<p>__MSG_avatar_set__ Gravatar</p>
|
|
</li>
|
|
</ol>
|
|
<script src="assets/js/popup.js" type="module"></script>
|
|
</body>
|
|
</html> |