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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |