Red Subscribe Button Fixer
The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.
ما هو Red Subscribe Button Fixer؟
Red Subscribe Button Fixer هو إضافة Chrome تم تطويرها بواسطة Tony Webster، والميزة الرئيسية لها هي "The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Red Subscribe Button Fixer
قم بتنزيل ملفات الامتداد Red Subscribe Button Fixer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | |
ID | imfcjgelinkpbhdppbbpeejbaiblbeeo |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/red-subscribe-button-fixe/imfcjgelinkpbhdppbbpeejbaiblbeeo |
الوصف | The new YouTube subscribe button is bright flaming red. How annoying, right? This extension fixes that. |
حجم الملف | 215 KB |
عدد التثبيتات | 96 |
النسخة الحالية | 1.2 |
آخر تحديث | 2013-07-09 |
تاريخ النشر | 2013-07-09 |
تقييم | 4.22/5 مجموع تقييمات 9 |
المطور | Tony Webster |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" ] } ] } |