Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
Bugfix: Lien sur l'en-tête YT
Browse files Browse the repository at this point in the history
  • Loading branch information
Miala-python authored Jan 12, 2024
1 parent 6465a97 commit ab5f069
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
31 changes: 16 additions & 15 deletions fav.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function scan_vids() {
}


let TopBar = document.querySelector('div#container.style-scope.ytd-masthead');
var TopBar = document.querySelector('div#container.style-scope.ytd-masthead');

function run() {
Array.from(play_buttons).forEach(e => {
Expand All @@ -137,10 +137,9 @@ function run() {
e.onclick = function () {
e.setAttribute("disabled", "");
e.innerHTML = "Scan en cours...";
TopBar.innerHTML = `Scan en cours... Veuillez patienter... (Pourcentage dans le titre de la page)`;
scan_vids();
}
TopBar.innerHTML = `Scan en cours... Veuillez patienter... (Pourcentage dans le titre de la page)`;
TopBar.setAttribute("style", `font-size: x-large`);
});

}
Expand All @@ -164,19 +163,21 @@ if (url.hostname === "www.youtube.com" && url.pathname === "/watch") {
document.querySelector('html').appendChild(pln);
run();

TopBar.innerHTML = `
TopBar.innerHTML = `<p>
Appuyez sur
<a onclick="
Array.from(play_buttons).forEach(e => {
e.setAttribute('disabled', '');
e.innerHTML = 'Scan en cours...';
});
TopBar.innerHTML = 'Scan en cours... Veuillez patienter... (Pourcentage dans le titre de la page)';
scan_vids();
">
ce lien
</a>
pour lancer le scan.
<button
style="color: #000000; background-color: rgb(0 199 50);"
onclick="
Array.from(play_buttons).forEach(e => {
e.setAttribute('disabled', '');
e.innerHTML = 'Scan en cours...';
});
TopBar.innerHTML = 'Scan en cours... Veuillez patienter... (Pourcentage dans le titre de la page)';
scan_vids();"
>
ce bouton
</button>
pour lancer le scan.</p>
`;
TopBar.setAttribute("style", `
font-size: x-large
Expand Down
11 changes: 10 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ <h1>Lecteur MiYT - Musique & Videos</h1>
</div>

<div class="content box">
<h1>Version actuelle: <code>0.02.2F</code></h1> <!-- α > β > Stable > Finale-->
<h1>Version actuelle: <code>0.02.3S</code></h1> <!-- α > β > Stable > Finale-->
<ul>
<li>
<h2>Versions futurs (projets par ordre de priorités):</h2>
Expand All @@ -120,6 +120,15 @@ <h2>Versions futurs (projets par ordre de priorités):</h2>
</ul>
</li> -->
</li>
<li>
<h2>V0.02.2 - **/0*/****</h2>
<ul>
<li>Résolutions de bugs mineurs:
<ul>
<li>Lien sur l'en-tête YT</li>
</ul>
</ul>
</li>
<li>
<h2>V0.02.2 - 12/01/2024</h2>
<ul>
Expand Down

0 comments on commit ab5f069

Please sign in to comment.