Giant Bomb QoL
Provides some simple Quality-of-Life enhancements to giantbomb.com.
Что такое Giant Bomb QoL?
Giant Bomb QoL - это расширение Chrome, разработанное QoL Extensions, и его основная функция - "Provides some simple Quality-of-Life enhancements to giantbomb.com.".
Снимки экрана расширения
Скачать файл CRX расширения Giant Bomb QoL
Скачайте файлы расширений 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 |
Официальный 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" } } |