GBx
A series of ehancements to your Giant Bomb browsing experience
GBxคืออะไร?
GBx เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Calydon และคุณลักษณะหลักของมันคือ "A series of ehancements to your Giant Bomb browsing experience"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GBx
ดาวน์โหลดไฟล์ส่วนขยาย GBx ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Enhance your Giant Bomb experience with the following features: - Reconfigured homepage with user customization and a new "recently played" section. - Add individual videos to your Watchlist - Enable the Light theme. Must be a Giant Bomb user and authenticate to use this extension.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GBx |
ID | gaokookknjnmknngccmageaapfmahlei |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gbx/gaokookknjnmknngccmageaapfmahlei |
คำอธิบาย | A series of ehancements to your Giant Bomb browsing experience |
ขนาดไฟล์ | 890 KB |
จำนวนการติดตั้ง | 50 |
เวอร์ชันปัจจุบัน | 1.0.6 |
อัปเดตครั้งล่าสุด | 2020-08-10 |
วันที่เผยแพร่ | 2020-07-28 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Calydon |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GBx", "version": "1.0.6", "description": "A series of ehancements to your Giant Bomb browsing experience", "permissions": [ "*:\/\/www.giantbomb.com\/*", "tabs", "storage" ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "images\/*", "styles\/*", "shared\/*", "watchlist\/*", "homepage\/*" ], "browser_action": { "default_popup": "settings\/settings.html", "default_title": "GBx" }, "icons": { "16": "images\/icons\/gbx_16.png", "32": "images\/icons\/gbx_32.png", "48": "images\/icons\/gbx_48.png", "128": "images\/icons\/gbx_128.png" }, "content_scripts": [ { "all_frames": false, "js": [ "dependencies\/jquery-3.5.1.min.js", "styles\/styles.js" ], "css": [ "styles\/base.css", "styles\/light.css" ], "matches": [ "*:\/\/www.giantbomb.com\/*" ], "run_at": "document_start" }, { "all_frames": false, "js": [ "dependencies\/jquery-3.5.1.min.js", "dependencies\/angular.min.js", "dependencies\/moment.min.js", "shared\/shared-services.js", "homepage\/homepage.js", "homepage\/recently-played.js" ], "css": [ "styles\/homepage.css" ], "matches": [ "*:\/\/www.giantbomb.com\/" ], "run_at": "document_end" }, { "all_frames": false, "js": [ "dependencies\/jquery-3.5.1.min.js", "dependencies\/angular.min.js", "dependencies\/moment.min.js", "dependencies\/moment-timezone.min.js", "dependencies\/angular-animate.min.js", "dependencies\/angular-moment.min.js", "shared\/shared-services.js", "watchlist\/watchlist.js" ], "css": [ "styles\/watchlist.css" ], "matches": [ "*:\/\/www.giantbomb.com\/videos\/shows\/watchlist\/" ], "run_at": "document_end" }, { "all_frames": false, "js": [ "dependencies\/jquery-3.5.1.min.js", "dependencies\/angular.min.js", "dependencies\/moment.min.js", "dependencies\/moment-timezone.min.js", "dependencies\/angular-moment.min.js", "shared\/shared-services.js", "watchlist\/watchlist-button.js" ], "css": [ "styles\/watchlist.css" ], "matches": [ "*:\/\/www.giantbomb.com\/videos*", "*:\/\/www.giantbomb.com\/", "*:\/\/www.giantbomb.com\/shows\/*" ], "exclude_matches": [ "*:\/\/www.giantbomb.com\/videos\/shows\/watchlist\/" ], "run_at": "document_end" } ] } |