mirror of
https://codeberg.org/vlw/stadia-avatar.git
synced 2025-09-14 07:23:41 +02:00
Compare commits
No commits in common. "master" and "1.0.1" have entirely different histories.
2 changed files with 11 additions and 21 deletions
16
README.md
16
README.md
|
@ -1,9 +1,7 @@
|
|||
<p align="center">
|
||||
<img height="52" src="https://i.imgur.com/N6UXYux.png"/>
|
||||
</p>
|
||||
<p align="center">
|
||||
<img height="80" src="https://i.imgur.com/ZxZKGhp.png"/>
|
||||
<img width="400" src="https://www.presse-citron.net/app/uploads/2020/03/logo-stadia.png"/>
|
||||
</p>
|
||||
<h1 align="center">Stadia Avatar</h1>
|
||||
<h3 align="center">Use Gravatars with Google Stadia.</h2>
|
||||
<p align="center">Userscript for <a href="https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo">Tampermonkey</a> to bring <a href="http://en.gravatar.com/">Globally Recognized Avatars (Gravatars)</a> into Stadia for you and your friends.</p>
|
||||
<p align="center">
|
||||
|
@ -11,11 +9,6 @@
|
|||
</p>
|
||||
<p align="center"><i><strong>Stadia Avatar is not affiliated with Stadia or Google LLC.</strong><br>Stadia, the Stadia beacon, and related marks and logos are trademarks of Google LLC.</i></p>
|
||||
<p> </p>
|
||||
<p>
|
||||
<img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/VictorWesterlund/stadia-avatar"/>
|
||||
<img alt="API Status" src="https://img.shields.io/endpoint?url=https://api.victorwesterlund.com/status?api=stadia-avatar"/>
|
||||
<img alt="Maintenance" src="https://img.shields.io/maintenance/no/2021"/>
|
||||
</p>
|
||||
<h2>Installing / Get started</h2>
|
||||
<p><strong>Disclaimer before we get started!</strong><br>Stadia Avatar relies on a third-party database to store and retrieve the Gravatars. Your Stadia player ID and Gravatar hash is stored and made available to the public through Stadia Avatar's API.</p>
|
||||
<p>Information stored is and will always be limited to <strong>player ID</strong>, <strong>Gravatar hash</strong> and a <strong>Last-modified timestamp</strong>.</p>
|
||||
|
@ -31,6 +24,11 @@
|
|||
</ol>
|
||||
<h3>Creating a Gravatar account / Changing your profile picture</h3>
|
||||
<p>Follow the instruction on <a href="http://en.gravatar.com/">gravatar.com</a> to set up your Gravatar account.</p>
|
||||
<h2>Known issues!</h2>
|
||||
<table>
|
||||
<tr><th colspan=2>Issue</th></tr>
|
||||
</tr><td><strong>Avatars don't work on profile pages</strong></td><td>Original Stadia profile pictures are shown on all <code>/profile/</code> pages.<br>Ambiguity in the DOM makes it difficult to link a profile page to a specific user.</td></tr>
|
||||
</table>
|
||||
<h2>Report issues & suggest features</h2>
|
||||
<p>Please report bugs and suggest new features under <a href="https://github.com/VictorWesterlund/stadia-avatar/issues">Issues</a>.</p>
|
||||
<h2>License</h2>
|
||||
|
|
|
@ -44,16 +44,11 @@
|
|||
selectors(group,id = false) {
|
||||
switch(group) {
|
||||
case "me": return `
|
||||
c-wiz[data-p*="${id}"] .XZRzG,
|
||||
.OGtUWe .dOyvbe,
|
||||
.ksZYgc,
|
||||
.rybUIf
|
||||
`;
|
||||
case "friends": return `
|
||||
div[jsdata*="${id}"] .PwtJse,
|
||||
c-wiz[data-p*="${id}"] .XZRzG,
|
||||
c-wiz[data-p*="${id}"] .drvCDc,
|
||||
c-wiz[data-p*="${id}"] .vLPc0c,
|
||||
c-wiz[data-p='%.@.null,"${id}"]'] .drvCDc,
|
||||
.Y1rZWd[data-player-id="${id}"] .Fnd1Pd,
|
||||
.Y1rZWd[data-playerid="${id}"] .Fnd1Pd,
|
||||
.w2Sl7c[data-playerid="${id}"] .drvCDc
|
||||
|
@ -77,7 +72,6 @@
|
|||
return id;
|
||||
}
|
||||
|
||||
// Fetch Gravatar hash from endpoint
|
||||
async function getStadiaAvatar(playerID) {
|
||||
stadiaAvatar.searchParams.set("userID",playerID);
|
||||
|
||||
|
@ -101,7 +95,7 @@
|
|||
|
||||
// ----
|
||||
|
||||
replaceWithGravatar("me",getID(document.querySelector("[jsname='HiaYvf']"))); // Append styles for my avatar
|
||||
replaceWithGravatar("me",getID(document.querySelector("[jsname='HiaYvf']")));
|
||||
|
||||
function updateFamily(group,wrapper) {
|
||||
for(const element of wrapper) {
|
||||
|
@ -116,15 +110,13 @@
|
|||
|
||||
let timeout = null;
|
||||
|
||||
// Fetch friend avatars
|
||||
const friendsList = (mutation,observer) => {
|
||||
clearTimeout(timeout);
|
||||
|
||||
// Wait until subtree stops mutating (on initial load)
|
||||
timeout = setTimeout(() => {
|
||||
let elements = [];
|
||||
elements = Array.prototype.concat.apply(elements,document.querySelector("[jsaction='JIbuQc:mbLu7b']").children); // Friends list
|
||||
elements = Array.prototype.concat.apply(elements,document.querySelector("[jsname='FhFdCc']").children); // Messages list
|
||||
elements = Array.prototype.concat.apply(elements,document.querySelector("[jsaction='JIbuQc:mbLu7b']").children);
|
||||
elements = Array.prototype.concat.apply(elements,document.querySelector("[jsname='FhFdCc']").children);
|
||||
|
||||
updateFamily("friends",elements);
|
||||
},700);
|
||||
|
|
Loading…
Add table
Reference in a new issue