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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 } } |