Rivals Board Enhancements
This extension adds a number of enhancements to the new rivals message board
ما هو Rivals Board Enhancements؟
Rivals Board Enhancements هو إضافة Chrome تم تطويرها بواسطة Yakrware، والميزة الرئيسية لها هي "This extension adds a number of enhancements to the new rivals message board".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Rivals Board Enhancements
قم بتنزيل ملفات الامتداد Rivals Board Enhancements بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Rivals is halfway through updating their message boards, if yours breaks with version 2, you can copy version 1 here and load unpacked: https://github.com/kayakyakr/rivals-board-enhancements. Features: All Views: - Removes side bar - Force wide - sets to 100% width Forum View: - Displays compact forum view Thread View: - Hides extra user details - Replaces mobile avatars with normal avatars (gifs will display now) - Shows rectangular avatars with max height/width of 96 px - Compact view removes a lot of white space
معلومات أساسية عن التمديد
الاسم | Rivals Board Enhancements |
ID | ocolfhpogcchjfldbmjmigpneldphngf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/rivals-board-enhancements/ocolfhpogcchjfldbmjmigpneldphngf |
الوصف | This extension adds a number of enhancements to the new rivals message board |
حجم الملف | 42.83 KB |
عدد التثبيتات | 1,697 |
النسخة الحالية | 2.0.3 |
آخر تحديث | 2020-08-27 |
تاريخ النشر | 2016-07-27 |
تقييم | 4.91/5 مجموع تقييمات 34 |
المطور | Yakrware |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Rivals Board Enhancements", "description": "This extension adds a number of enhancements to the new rivals message board", "version": "2.0.3", "icons": { "48": "icon.png", "128": "icon128.png" }, "permissions": [ "storage", "*:\/\/*.forums.rivals.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.forums.rivals.com\/*" ], "js": [ "document_end.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.forums.rivals.com\/*" ], "css": [ "forum_enhancements.css" ], "js": [ "jquery.js", "document_start.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "chrome_style": true } } |