Rivals Board Enhancements
This extension adds a number of enhancements to the new rivals message board
Rivals Board Enhancements là gì?
Rivals Board Enhancements là một tiện ích mở rộng Chrome được phát triển bởi Yakrware, và tính năng chính của nó là "This extension adds a number of enhancements to the new rivals message board".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Rivals Board Enhancements
Tải xuống các tệp mở rộng Rivals Board Enhancements dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Rivals Board Enhancements |
ID | ocolfhpogcchjfldbmjmigpneldphngf |
URL Chính Thức | https://chromewebstore.google.com/detail/rivals-board-enhancements/ocolfhpogcchjfldbmjmigpneldphngf |
Mô tả | This extension adds a number of enhancements to the new rivals message board |
Kích Thước Tệp | 42.83 KB |
Số Lần Cài Đặt | 1,697 |
Phiên Bản Hiện Tại | 2.0.3 |
Cập Nhật Lần Cuối | 2020-08-27 |
Ngày Phát Hành | 2016-07-27 |
Đánh Giá | 4.91/5 Tổng số 34 Đánh Giá |
Nhà Phát Triển | Yakrware |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |