Giant Bomb QoL
Provides some simple Quality-of-Life enhancements to giantbomb.com.
什麼是Giant Bomb QoL?
Giant Bomb QoL是由QoL Extensions開發的Chrome擴展程式,該擴展的主要功能是“Provides some simple Quality-of-Life enhancements to giantbomb.com.”。
擴展截圖
下載Giant Bomb QoL擴展crx文件
下載Giant Bomb QoL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A simple WebExtension that provides some Quality-of-Life improvements to giantbomb.com. This extension currently offers the following enhancements: - Live Stream indications and navigation via the browser toolbar. - Easily selectable emotes for the live stream chat. - Playback rate control for videos. - Adds infobuttons to GB Infinite poll options that link to the video on QLCrew. - Hides spoilers in This Is The Run & Going Rogue videos. Artwork for the notifications button provided by Giant Bomb user mjhwwbg.
擴展基本資訊
名稱 | Giant Bomb QoL |
ID | ciipbadfpnjpnnjchpeaiilodeeeekam |
官方網址 | https://chromewebstore.google.com/detail/giant-bomb-qol/ciipbadfpnjpnnjchpeaiilodeeeekam |
簡介 | Provides some simple Quality-of-Life enhancements to giantbomb.com. |
檔案大小 | 6.09 MB |
安裝次數 | 1,293 |
目前版本 | 4.21 |
更新時間 | 2023-09-21 |
上架時間 | 2020-05-23 |
評分 | 5.00/5 共 22 次評分 |
開發者 | QoL Extensions |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/lrkissling/giant-bomb-qol |
說明頁面URL | https://www.giantbomb.com/forums/general-discussion-30/giant-bomb-qol-a-web-extension-that-provides-quali-1810362/ |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Provides some simple Quality-of-Life enhancements to giantbomb.com.", "manifest_version": 2, "name": "Giant Bomb QoL", "version": "4.21", "permissions": [ "*:\/\/*.giantbomb.com\/api\/*", "storage" ], "icons": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "browser_action": { "browser_style": true, "default_popup": "popup\/popup.html", "default_icon": "img\/gb-offair.png" }, "background": { "scripts": [ "third_party\/jquery-3.5.1.min.js", "updateStreamStatus.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.giantbomb.com\/", "*:\/\/www.giantbomb.com\/shows\/*", "*:\/\/www.giantbomb.com\/videos\/*" ], "css": [ "resources\/giant_bomb_qol.css" ], "js": [ "third_party\/jquery-3.5.1.min.js", "content_scripts\/hide_spoilers.js", "content_scripts\/add_playback_rate.js" ] }, { "matches": [ "*:\/\/www.giantbomb.com\/videos\/*" ], "css": [ "resources\/giant_bomb_qol.css" ], "js": [ "third_party\/jquery-3.5.1.min.js", "content_scripts\/add_playback_rate.js" ] }, { "matches": [ "*:\/\/www.giantbomb.com\/*" ], "css": [ "resources\/giant_bomb_qol.css" ], "js": [ "third_party\/jquery-3.5.1.min.js", "content_scripts\/live_show_qol.js" ] } ], "web_accessible_resources": [ "img\/*", "resources\/emotes.json" ], "options_ui": { "page": "options\/options.html" } } |