stadia-avatar/client/extension/popup.html
Victor Westerlund 74b2635755 New folder structure for extension
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.
2021-02-08 04:50:47 +01:00

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>