thumbnail-rating-bar-for-youtube
thumbnail-rating-bar-for-youtube copied to clipboard
Add the number of likes/dislikes below the title of the video
Can you make show number of likes visible near the like percentage of the video or replace the like percentage with the number of likes on the video
Thanks for the suggestion. I'm currently not sure if I want to add this option to the extension since there is already the option to hover over the rating bar to see a tooltip of the like/dislike counts, and I feel like also showing the counts next to the rating percentage might start to feel like too much added text. But if enough other people also want this feature added, I'll consider adding it. So I'll leave this issue open for now to gauge interest.
Also, if you wanted to customize the extension to your liking, you can always download or clone the repo and add this specific feature, and then load the extension locally in your browser (let me know if you need help with this). You would just need to update the addRatingPercentage function to also add the like/dislike counts after the percentage: https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/blob/master/extension/content-script.js#L324
Thanks for the reply sir, till the update I want to do this locally, I want to remove like percentage and add a number of likes instead of how to do that sir
On Mon, Jan 17, 2022 at 3:01 AM Elliot Waite @.***> wrote:
Thanks for the suggestion. I'm currently not sure if I want to add this option to the extension since there is already the option to hover over the rating bar to see a tooltip of the like/dislike counts, and I feel like also showing the counts next to the rating percentage might start to feel like too much added text. But if enough other people also want this feature added, I'll consider adding it. So I'll leave this issue open for now to gauge interest.
Also, if you wanted to customize the extension to your liking, you can always download or clone the repo and add this specific feature, and then load the extension locally in your browser (let me know if you need help with this). You would just need to update the addRatingPercentage function to also add the like/dislike counts after the percentage: https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/blob/master/extension/content-script.js#L324
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1013956274, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGAOBV464ON2VXRVHZ3UWM2JLANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
To start developing locally:
- Download this repo to somewhere on your computer.
- Go to your browser's extensions page.
- Enable developer mode (top right).
- Choose to load an unpacked extension and choose the "extension" directory at the root of this repo.
- Then whenever you update the extension code, refresh the extension (there is usually a refresh button for the extension on the browser's extensions page).
Then, in the content-script.js file, change this:
function getRatingPercentageHtml(videoData) {
let r = (1 - videoData.rating) * 1275
let g = videoData.rating * 637.5 - 255
if (!isDarkTheme) {
g = Math.min(g, 255) * 0.85
}
let rgb = 'rgb(' + r + ',' + g + ',0)'
return '<span class="style-scope ytd-video-meta-block ytrb-percentage" style="color:' +
rgb + ' !important">' + ratingToPercentage(videoData.rating) + '</span>'
}
To something like this (feel free to change the text variable to be in whatever format you want):
function getRatingPercentageHtml(videoData) {
let text = videoData.likes.toLocaleString() + ' likes, ' + videoData.dislikes.toLocaleString() + ' dislikes'
return '<span class="style-scope ytd-video-meta-block ytrb-percentage">' + text + '</span>'
}
Let me know if you run into any issues or have any other questions.
Sir I'm not able to download it can you make a video to explain whole process or just explain in chat how to download that script
On Mon, Jan 17, 2022 at 1:55 PM Elliot Waite @.***> wrote:
To start developing locally:
- Download this repo to somewhere on your computer.
- Go to your browser's extensions page.
- Enable developer mode (top right).
- Choose to load an unpacked extension and choose the "extension" directory at the root of this repo.
- Then whenever you update the extension code, refresh the extension (there is usually a refresh button for the extension on the browser's extensions page).
Then, in the content-script.js https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/blob/master/extension/content-script.js#L190 file, change this:
function getRatingPercentageHtml(videoData) { let r = (1 - videoData.rating) * 1275 let g = videoData.rating * 637.5 - 255 if (!isDarkTheme) { g = Math.min(g, 255) * 0.85 } let rgb = 'rgb(' + r + ',' + g + ',0)'
return '' }
To something like this (feel free to change the text variable to be in whatever format you want):
function getRatingPercentageHtml(videoData) { let text = videoData.likes.toLocaleString() + ' likes, ' + videoData.dislikes.toLocaleString() + ' dislikes' return '' }
Let me know if you run into any issues or have any other questions.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014255813, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGFBRTZVEWJ27YUFQCTUWPG6XANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
To download the repo, go here, then click the green "Code" button near the top right, then click Download ZIP.
I don't have time to make a video about this, but you should be able to find educational resources online about any of the steps I described above to better understand them.
Sir it still does not show number of likes near title of the video
On Mon, Jan 17, 2022 at 4:55 PM Elliot Waite @.***> wrote:
To download the repo, go here https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube, then click the green "Code" button near the top right, then click Download ZIP.
I don't have time to make a video about this, but you should be able to find educational resources online about any of the steps I described above to better understand them.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014415758, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGDPDBMI7243DZ4WWRTUWP4BTANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
Sir, it still does not show the number of likes near the title of the video what I've done sir is here: https://youtu.be/gyP_GViVNak
On Mon, Jan 17, 2022 at 5:09 PM Shivam Kumar Choudhary < @.***> wrote:
Sir it still does not show number of likes near title of the video
On Mon, Jan 17, 2022 at 4:55 PM Elliot Waite @.***> wrote:
To download the repo, go here https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube, then click the green "Code" button near the top right, then click Download ZIP.
I don't have time to make a video about this, but you should be able to find educational resources online about any of the steps I described above to better understand them.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014415758, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGDPDBMI7243DZ4WWRTUWP4BTANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** .com>
Sir please can you make the video explaining the whole process and send it to me on WhatsApp number
On Mon, Jan 17, 2022 at 5:13 PM Shivam Kumar Choudhary < @.***> wrote:
Sir, it still does not show the number of likes near the title of the video what I've done sir is here: https://youtu.be/gyP_GViVNak
On Mon, Jan 17, 2022 at 5:09 PM Shivam Kumar Choudhary < @.***> wrote:
Sir it still does not show number of likes near title of the video
On Mon, Jan 17, 2022 at 4:55 PM Elliot Waite @.***> wrote:
To download the repo, go here https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube, then click the green "Code" button near the top right, then click Download ZIP.
I don't have time to make a video about this, but you should be able to find educational resources online about any of the steps I described above to better understand them.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014415758, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGDPDBMI7243DZ4WWRTUWP4BTANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: <elliotwaite/thumbnail-rating-bar-for-youtube/issues/64/1014415758@ github.com>
You still have to enable the "color-coded text percentage" option.
I`ve enabled sir like percentage but no of likes not showing
On Mon, Jan 17, 2022 at 5:27 PM Elliot Waite @.***> wrote:
You still have to enable the "color-coded text percentage" option.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014442705, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGAQEDSXGKTXERPQQQLUWP72DANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
Did you also update the getRatingPercentageHtml function code?
Sir can you make a separate extension whose name be like youtube likes shower and the extension job will be only to show the number of likes near the title of the video
On Mon, Jan 17, 2022 at 5:33 PM Shivam Kumar Choudhary < @.***> wrote:
I`ve enabled sir like percentage but no of likes not showing
On Mon, Jan 17, 2022 at 5:27 PM Elliot Waite @.***> wrote:
You still have to enable the "color-coded text percentage" option.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014442705, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGAQEDSXGKTXERPQQQLUWP72DANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** .com>
how to do that sir,i only did what i showed in youtube video
On Mon, Jan 17, 2022 at 5:37 PM Elliot Waite @.***> wrote:
Did you also update the getRatingPercentageHtml function code?
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014450988, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGHAA2KZS46LFH5IYSDUWQBAZANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
In the extension directory, there is a file named content-script.js. Open it in a text editor and find the code for the getRatingPercentageHtml function, and replace it as I described above, then save that file and click the refresh button for the extension (the circular arrow one).
I`ve made the change but now how to download it
On Mon, Jan 17, 2022 at 5:41 PM Elliot Waite @.***> wrote:
In the extension directory, there is a file named content-script.js. Open it in a text editor and find the code for the getRatingPercentageHtml function, and replace it as I described above, then save that file and click the refresh button for the extension (the circular arrow one).
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014454729, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGEMJZPMQNYHFLSXDX3UWQBQPANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
Sir content-script.js https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/blob/master/extension/content-script.js#L190 file is not opening what to do:
On Mon, Jan 17, 2022 at 5:47 PM Shivam Kumar Choudhary < @.***> wrote:
I`ve made the change but now how to download it
On Mon, Jan 17, 2022 at 5:41 PM Elliot Waite @.***> wrote:
In the extension directory, there is a file named content-script.js. Open it in a text editor and find the code for the getRatingPercentageHtml function, and replace it as I described above, then save that file and click the refresh button for the extension (the circular arrow one).
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014454729, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGEMJZPMQNYHFLSXDX3UWQBQPANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** .com>
You need a text editor like VSCode or Sublime Text. You can look up YouTube videos about how to edit JavaScript files.
Finally done sir thank you thank you thank you so much can you also add the color to the like and dislike number, I will change the code again to content-script.js https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/blob/master/extension/content-script.js#L190 when you will provide new code
On Mon, Jan 17, 2022 at 5:57 PM Elliot Waite @.***> wrote:
You need a text editor like VSCode or Sublime Text. You can look up YouTube videos about how to edit JavaScript files.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014468083, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGADWVBG4TDCML25HITUWQDKXANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
Try this:
function getRatingPercentageHtml(videoData) {
let r = (1 - videoData.rating) * 1275
let g = videoData.rating * 637.5 - 255
if (!isDarkTheme) {
g = Math.min(g, 255) * 0.85
}
let rgb = 'rgb(' + r + ',' + g + ',0)'
let text = videoData.likes.toLocaleString() + ' likes, ' + videoData.dislikes.toLocaleString() + ' dislikes'
return '<span class="style-scope ytd-video-meta-block ytrb-percentage" style="color:' +
rgb + ' !important">' + text + '</span>'
}
Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you so much sir
On Mon, Jan 17, 2022 at 6:12 PM Elliot Waite @.***> wrote:
Try this:
function getRatingPercentageHtml(videoData) { let r = (1 - videoData.rating) * 1275 let g = videoData.rating * 637.5 - 255 if (!isDarkTheme) { g = Math.min(g, 255) * 0.85 } let rgb = 'rgb(' + r + ',' + g + ',0)' let text = videoData.likes.toLocaleString() + ' likes, ' + videoData.dislikes.toLocaleString() + ' dislikes'
return '' }
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014479237, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGFEITBGAZSP7NLAY2LUWQFEDANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
Glad to hear you got it working. Should I close this issue now?
Sir, you must be thinking why Im so much obsessed with the number of likes on youtube videos its because if I want to study any topic I just youtube
search the topic and the video with the most number of likes will be the
best video on the topic so I watch that particular video, thank you so much
you can now close the issue
On Mon, Jan 17, 2022 at 6:17 PM Shivam Kumar Choudhary < @.***> wrote:
Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you Thank you so much sir
On Mon, Jan 17, 2022 at 6:12 PM Elliot Waite @.***> wrote:
Try this:
function getRatingPercentageHtml(videoData) { let r = (1 - videoData.rating) * 1275 let g = videoData.rating * 637.5 - 255 if (!isDarkTheme) { g = Math.min(g, 255) * 0.85 } let rgb = 'rgb(' + r + ',' + g + ',0)' let text = videoData.likes.toLocaleString() + ' likes, ' + videoData.dislikes.toLocaleString() + ' dislikes'
return '' }
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014479237, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGFEITBGAZSP7NLAY2LUWQFEDANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** .com>
Sounds like a good strategy.
Thank you!
On Mon, Jan 17, 2022 at 6:26 PM Elliot Waite @.***> wrote:
Sounds like a good strategy.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014496361, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGAOD2V7XHHLMDLCNPLUWQGWDANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
You're welcome.
Sir likes and dislike data is loading for every video except when we search any topic, in people also watched section only the last video like dislike data is loading and in, for you section also only last video like dislike data is loading,else it is doing perfect job in loading like dislike data
On Mon, Jan 17, 2022 at 6:31 PM Elliot Waite @.***> wrote:
You're welcome.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014503829, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGGQGJ5H3DRJKZ3YJ7DUWQHJ5ANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>
On Mon, Jan 17, 2022 at 7:26 PM Shivam Kumar Choudhary < @.***> wrote:
Sir likes and dislike data is loading for every video except when we search any topic, in people also watched section only the last video like dislike data is loading and in, for you section also only last video like dislike data is loading,else it is doing perfect job in loading like dislike data
On Mon, Jan 17, 2022 at 6:31 PM Elliot Waite @.***> wrote:
You're welcome.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014503829, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGGQGJ5H3DRJKZ3YJ7DUWQHJ5ANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** .com>
On Mon, Jan 17, 2022 at 7:27 PM Shivam Kumar Choudhary < @.***> wrote:
On Mon, Jan 17, 2022 at 7:26 PM Shivam Kumar Choudhary < @.***> wrote:
Sir likes and dislike data is loading for every video except when we search any topic, in people also watched section only the last video like dislike data is loading and in, for you section also only last video like dislike data is loading,else it is doing perfect job in loading like dislike data
On Mon, Jan 17, 2022 at 6:31 PM Elliot Waite @.***> wrote:
You're welcome.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014503829, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGGQGJ5H3DRJKZ3YJ7DUWQHJ5ANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: <elliotwaite/thumbnail-rating-bar-for-youtube/issues/64/1014503829@ github.com>
Okay, I'm not sure how to fix that.
Ok, no problem it's only two to three videos are such
On Mon, Jan 17, 2022 at 10:12 PM Elliot Waite @.***> wrote:
Okay, I'm not sure how to fix that.
— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1014724905, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGGD3P6DNOWWKBKVDF3UWRBG3ANCNFSM5L6KZQXQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
You are receiving this because you authored the thread.Message ID: @.*** com>