All Projects → aquelemiguel → yt-restore-dislikes

aquelemiguel / yt-restore-dislikes

Licence: other
👎 A browser extension for restoring the dislike count on YouTube videos.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to yt-restore-dislikes

yt-dislikes-viewer
A browser extension that allows you to see dislikes on a youtube video after the youtube update
Stars: ✭ 291 (+1112.5%)
Mutual labels:  firefox-addon, youtube-api, firefox-extension, dislikes
return-youtube-dislike
Chrome extension to return youtube dislikes
Stars: ✭ 10,634 (+44208.33%)
Mutual labels:  firefox-addon, firefox-extension, dislikes
Firefox Scripts
userChromeJS / autoconfig.js and extensions
Stars: ✭ 202 (+741.67%)
Mutual labels:  firefox-addon, firefox-extension
Slick Fox
🦊 A userchrome.css file that has rounded tabs and a url bar that can disappear when not selected on. It works with any themes.
Stars: ✭ 210 (+775%)
Mutual labels:  firefox-addon, firefox-extension
no-flash
A WebExtension to help eradicate the Flash pandemic.
Stars: ✭ 42 (+75%)
Mutual labels:  firefox-addon, firefox-extension
Floccus
☁️ Sync your bookmarks privately across browsers
Stars: ✭ 2,630 (+10858.33%)
Mutual labels:  firefox-addon, firefox-extension
Oldschool Github Extension
Revert GitHub's UI back to its classic look (before the June 23, 2020 update that has a flat, rounded and more whitespaced design).
Stars: ✭ 200 (+733.33%)
Mutual labels:  firefox-addon, firefox-extension
Panorama Tab Groups
An add-on for Firefox that implements the old Tab Groups/Panorama functionality
Stars: ✭ 230 (+858.33%)
Mutual labels:  firefox-addon, firefox-extension
Alfred Firefox
Search and control Firefox from Alfred
Stars: ✭ 142 (+491.67%)
Mutual labels:  firefox-addon, firefox-extension
Notion-Boost-browser-extension
Chrome & Firefox extension for Notion to add 20+ features like sticky outline, small text & full width by default, hide comments & help button, bolder text etc. Download here: https://gourav.io/notion-boost
Stars: ✭ 367 (+1429.17%)
Mutual labels:  firefox-addon, firefox-extension
enterprise-policy-generator
The Enterprise Policy Engine allows administrators to configure Firefox via a configuration file. The Enterprise Policy Generator helps to create the configuration file.
Stars: ✭ 57 (+137.5%)
Mutual labels:  firefox-addon, firefox-extension
quickjira
🚤 📂 Quickly access the JIRA of your choice by typing the ticket id
Stars: ✭ 65 (+170.83%)
Mutual labels:  firefox-addon, firefox-extension
Spotify Lyrics
🎉 Desktop Spotify Web Player Instant Synchronised Lyrics
Stars: ✭ 162 (+575%)
Mutual labels:  firefox-addon, firefox-extension
Cleanlinks
Converts obfuscated/nested links to genuine clean links.
Stars: ✭ 157 (+554.17%)
Mutual labels:  firefox-addon, firefox-extension
Disable Javascript
Adds the ability to disable JavaScript on specific sites.
Stars: ✭ 151 (+529.17%)
Mutual labels:  firefox-addon, firefox-extension
Bypass Paywalls Chrome
Bypass Paywalls web browser extension for Chrome and Firefox.
Stars: ✭ 20,876 (+86883.33%)
Mutual labels:  firefox-addon, firefox-extension
locale-switcher
Browser Extension to quickly change your browser locale.
Stars: ✭ 75 (+212.5%)
Mutual labels:  firefox-addon, firefox-extension
Newtaboverride
New Tab Override allows you to set the page that shows whenever you open a new tab.
Stars: ✭ 120 (+400%)
Mutual labels:  firefox-addon, firefox-extension
Livemarks
Extension that restores RSS Feed Livemarks in Firefox.
Stars: ✭ 137 (+470.83%)
Mutual labels:  firefox-addon, firefox-extension
Startpage
A minimal starpage for Chrome and Firefox
Stars: ✭ 240 (+900%)
Mutual labels:  firefox-addon, firefox-extension

👎 yt-restore-dislikes

A browser extension for restoring the dislike count on YouTube videos.

⚠️ Please note that YouTube has issued a statement explaining they are removing access to public dislike data on their API on December 13th. This extension is just a temporary solution to a permanent problem (and well, a fairly fun learning experience for me), so expect this project to get archived by then.

Motivation

In November 2021, YouTube published a video informing they would be making the dislike count invisible for all videos on the plaform. This was a response to "groups of viewers dislike-bombing videos usually because they don't like the creator or what they stand for".

However, the dislike button still remains the most effective crowdsourced tool to combat misinformation, scams and clickbait on YouTube. This measure received overwhelming backlash by the community and content creators alike but is still being pushed forward.

Implementation

At the time of writing, the dislike count for any video can still be fetched by Google themselves via the YouTube Data API v3.

What this extension does is simply request the current video's metadata and inject a little HTML to the YouTube webpage, replacing the "Dislike" label with the response - the actual count.

Requirements

Unfortunately, the YouTube Data API v3 isn't free and the default quota is of 10,000 requests per day. This is equivalent to clicking on 10,000 videos. While this should be more than enough for personal use, if I distribute my own key and a few dozen people install this, we'll reach the limit pretty quickly.

So, you must provide your own API key. Luckily, generating a key is a pretty straightforward process, just follow YouTube's docs. There is no need to add OAuth 2.0.

Installation

Currently I don't feel like publishing this to the Chrome Web Store or Add-ons for Firefox because it'll undergo a review process, it may very well just get denied and the extension likely won't work in a month from now. So you'll need to load the extension yourself.

Chrome

  1. Check the latest release page. Download and unzip chromium.zip.
  2. Once you've generated your API key, open chromium/script.js and replace the YT_API_KEY variable with your own key (paste between the double quotes).
  3. Navigate to your browser's extensions page. It's chrome://extensions for Chrome and edge://extensions for Edge and enable developer mode.
  4. Click Load Unpacked and, in your unzipped folder, select the /chromium directory.

More reference on how to manually install Chrome extensions here.

Firefox

Unlike Chrome, before they can be installed, Firefox add-ons must be digitally signed by Mozilla, so this means extra work.

  1. Check the latest release page. Download and unzip firefox.zip.

  2. Once you've generated your API key, open firefox/script.js and replace the YT_API_KEY variable with your own key (paste between the double quotes).

  3. Now you need to sign the extension. I suggest using web-ext for this step.

    3.1. After installing it via npm, navigate to your unzipped /firefox folder and run web-ext build. It will generate a zipped file inside a new /web-ext-artifacts directory.

    3.2. Generate your addons.mozilla.org credentials (you'll need a Firefox Account here).

    3.3. Then sign the extension by running web-ext sign --api-key=$AMO_JWT_ISSUER --api-secret=$AMO_JWT_SECRET, the API key and secret parameters with your own credentials.

    3.4. After a while, a .xpi file (this is your signed extension) should be created inside the /web-ext-artifacts folder.

  4. Navigate to about:addons, select Install Add-on From File... and choose the extension you've created in the previous step.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].