Red Subscribe Button Fixer
The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.
Vad är Red Subscribe Button Fixer?
Red Subscribe Button Fixer är en Chrome-tillägg utvecklad av Tony Webster, och dess huvudfunktion är "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.".
Tilläggsskärmbilder
Ladda ner Red Subscribe Button Fixer-förlängningens CRX-fil
Ladda ner Red Subscribe Button Fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
YouTube recently replaced the 'Subscribe' button on video pages with an obnoxious bright red button. That's annoying. This extension's sole purpose is to swap it out with a less-annoying light grey version. This extension only adds limited CSS properties to target the subscribe button. It does not access your YouTube data or data on other sites, and no data is transmitted to third parties. Open source: https://github.com/webster/youtube-red-subscribe-button
Grundläggande Information om Tillägg
Namn | |
ID | imfcjgelinkpbhdppbbpeejbaiblbeeo |
Officiell webbadress | https://chrome.google.com/webstore/detail/red-subscribe-button-fixe/imfcjgelinkpbhdppbbpeejbaiblbeeo |
Beskrivning | The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that. |
Filstorlek | 215 KB |
Antal Installationer | 96 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2013-07-09 |
Publiceringsdatum | 2013-07-09 |
Betyg | 4.22/5 Totalt 9 Betyg |
Utvecklare | Tony Webster |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Red Subscribe Button Fixer", "description": "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.", "version": "1.2", "permissions": [ "https:\/\/www.youtube.com\/", "http:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "css": [ "noredbutton.css" ] } ] } |