elliotwaite / thumbnail-rating-bar-for-youtube

A Chrome and Firefox extension for YouTube that adds a rating bar (likes/dislikes ratio) to the bottom of every thumbnail.
https://chrome.google.com/webstore/detail/youtube-thumbnail-rating/cmlddjbnoehmihdmfhaacemlpgfbpoeb
MIT License
249 stars 17 forks source link

Add the number of likes/dislikes below the title of the video #64

Open shivamkumarc opened 2 years ago

shivamkumarc commented 2 years ago

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

elliotwaite commented 2 years ago

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

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

To start developing locally:

  1. Download this repo to somewhere on your computer.
  2. Go to your browser's extensions page.
  3. Enable developer mode (top right).
  4. Choose to load an unpacked extension and choose the "extension" directory at the root of this repo.
  5. 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.

shivamkumarc commented 2 years ago

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:

  1. Download this repo to somewhere on your computer.
  2. Go to your browser's extensions page.
  3. Enable developer mode (top right).
  4. Choose to load an unpacked extension and choose the "extension" directory at the root of this repo.
  5. 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 '' + ratingToPercentage(videoData.rating) + '' }

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 '' + text + '' }

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>

elliotwaite commented 2 years ago

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.

shivamkumarc commented 2 years ago

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>

shivamkumarc commented 2 years ago

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>

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

You still have to enable the "color-coded text percentage" option.

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

Did you also update the getRatingPercentageHtml function code?

shivamkumarc commented 2 years ago

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>

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

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).

shivamkumarc commented 2 years ago

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>

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

You need a text editor like VSCode or Sublime Text. You can look up YouTube videos about how to edit JavaScript files.

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

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>'
}
shivamkumarc commented 2 years ago

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 '' + text + '' }

— 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>

elliotwaite commented 2 years ago

Glad to hear you got it working. Should I close this issue now?

shivamkumarc commented 2 years ago

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 '' + text + '' }

— 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>

elliotwaite commented 2 years ago

Sounds like a good strategy.

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

You're welcome.

shivamkumarc commented 2 years ago

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>

shivamkumarc commented 2 years ago

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>

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

Okay, I'm not sure how to fix that.

shivamkumarc commented 2 years ago

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>

elliotwaite commented 2 years ago

I've updated the title of this issue to be "Add the number of likes/dislikes below the title of the video now", which corresponds with your latest comment (https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/67), and I think that is a more accurate description of your feature request. But feel free to update the title again if you think it should be something else.

shivamkumarc commented 2 years ago

Sir but it still shows like percentage and not the number of likes and dislikes

On Wed, Jan 26, 2022 at 5:04 AM Elliot Waite @.***> wrote:

I've updated the title of this issue to be "Add the number of likes/dislikes below the title of the video now", which corresponds with your latest comment (#67 https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/67), and I think that is a more accurate description of your feature request. But feel free to update the title again if you think it should be something else.

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1021709714, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGEPNP432KSFYYTIHFLUX4XRJANCNFSM5L6KZQXQ . 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>

elliotwaite commented 2 years ago

That's correct. Please refer to: https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1013956274

shivamkumarc commented 2 years ago

Sir I've already done it locally,can you do this to main extension itself

On Wed, Jan 26, 2022 at 9:45 AM Elliot Waite @.***> wrote:

That's correct. Please refer to: #64 (comment) https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1013956274

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1021845990, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGH6AVCU4KZCPBUCE3LUX5YOLANCNFSM5L6KZQXQ . 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>

shivamkumarc commented 2 years ago

I`ve already done it locally sir

On Wed, Jan 26, 2022 at 9:48 AM Shivam Kumar Choudhary < @.***> wrote:

Sir I've already done it locally,can you do this to main extension itself

On Wed, Jan 26, 2022 at 9:45 AM Elliot Waite @.***> wrote:

That's correct. Please refer to: #64 (comment) https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1013956274

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1021845990, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGH6AVCU4KZCPBUCE3LUX5YOLANCNFSM5L6KZQXQ . 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>

elliotwaite commented 2 years ago

I do not want to add this feature at the moment. If enough other people also want this feature added, I will consider it.

shivamkumarc commented 2 years ago

ok sir thanks for the reply

On Wed, Jan 26, 2022 at 9:55 AM Elliot Waite @.***> wrote:

I do not want to add this feature at the moment. If enough other people also want this feature added, I will consider it.

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1021849845, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGAQJ4WORWBEKV2YDUTUX5ZUFANCNFSM5L6KZQXQ . 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>

elliotwaite commented 2 years ago

No problem. I hope that is understandable.

shivamkumarc commented 2 years ago

Yes sir

On Wed, Jan 26, 2022 at 10:08 AM Elliot Waite @.***> wrote:

No problem. I hope that is understandable.

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1021854497, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGHNXY6UPEL7R6P6X4DUX53C7ANCNFSM5L6KZQXQ . 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>

shivamkumarc commented 2 years ago

Sir can you make some changes to the local extension as the thumbnail rating bar loads for every video but like and dislike data below the title of the video for some videos it doesn`t load

On Mon, Jan 17, 2022 at 10:21 PM Shivam Kumar Choudhary < @.***> wrote:

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>

elliotwaite commented 2 years ago

Which videos does it not load for? Is it a certain type of thumbnail, or just every once in a while it doesn't work?

shivamkumarc commented 2 years ago

For some videos on the home page, it doesn`t load but thumbnail rating bar loads for every video

On Wed, Jan 26, 2022 at 9:27 PM Elliot Waite @.***> wrote:

Which videos does it not load for? Is it a certain type of thumbnail, or just every once in a while it doesn't work?

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1022338395, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGE64SE77RA4QBSJSQ3UYAKU7ANCNFSM5L6KZQXQ . 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>

shivamkumarc commented 2 years ago

for example for right hand side video didn`t load

On Wed, Jan 26, 2022 at 9:37 PM Shivam Kumar Choudhary < @.***> wrote:

For some videos on the home page, it doesn`t load but thumbnail rating bar loads for every video

On Wed, Jan 26, 2022 at 9:27 PM Elliot Waite @.***> wrote:

Which videos does it not load for? Is it a certain type of thumbnail, or just every once in a while it doesn't work?

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1022338395, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGE64SE77RA4QBSJSQ3UYAKU7ANCNFSM5L6KZQXQ . 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>

elliotwaite commented 2 years ago

Can you post a screenshot?

shivamkumarc commented 2 years ago

And for also these two videos,it didn`t load

On Wed, Jan 26, 2022 at 9:41 PM Shivam Kumar Choudhary < @.***> wrote:

for example for right hand side video didn`t load

On Wed, Jan 26, 2022 at 9:37 PM Shivam Kumar Choudhary < @.***> wrote:

For some videos on the home page, it doesn`t load but thumbnail rating bar loads for every video

On Wed, Jan 26, 2022 at 9:27 PM Elliot Waite @.***> wrote:

Which videos does it not load for? Is it a certain type of thumbnail, or just every once in a while it doesn't work?

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1022338395, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGE64SE77RA4QBSJSQ3UYAKU7ANCNFSM5L6KZQXQ . 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/1022338395@ github.com>

shivamkumarc commented 2 years ago

On Wed, Jan 26, 2022 at 9:42 PM Shivam Kumar Choudhary < @.***> wrote:

And for also these two videos,it didn`t load

On Wed, Jan 26, 2022 at 9:41 PM Shivam Kumar Choudhary < @.***> wrote:

for example for right hand side video didn`t load

On Wed, Jan 26, 2022 at 9:37 PM Shivam Kumar Choudhary < @.***> wrote:

For some videos on the home page, it doesn`t load but thumbnail rating bar loads for every video

On Wed, Jan 26, 2022 at 9:27 PM Elliot Waite @.***> wrote:

Which videos does it not load for? Is it a certain type of thumbnail, or just every once in a while it doesn't work?

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1022338395, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGE64SE77RA4QBSJSQ3UYAKU7ANCNFSM5L6KZQXQ . 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/1022338395@ github.com>

elliotwaite commented 2 years ago

I think something went wrong when teid to post those screenshots. I only see text.

shivamkumarc commented 2 years ago

Sir, Ive downloaded the latest code of extension and made the change you told to me but still, its not loading for some of the videos, what I shared screenshot is on the videos section of the youtube channel, otherwise for the home page and when we search it loads for maximum of the videos but don`t load for people also watched,for you,previously watched,top news section

On Mon, Jan 31, 2022 at 10:45 AM Shivam Kumar Choudhary < @.***> wrote:

On Mon, Jan 31, 2022 at 6:49 AM Elliot Waite @.***> wrote:

I think something went wrong when teid to post those screenshots. I only see text.

— Reply to this email directly, view it on GitHub https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube/issues/64#issuecomment-1025292048, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDKUGGS7O4BTNKQSGAVERLUYXPQTANCNFSM5L6KZQXQ . 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>