Giant Bomb QoL

Provides some simple Quality-of-Life enhancements to giantbomb.com.

Qu'est-ce que Giant Bomb QoL ?

Giant Bomb QoL est une extension Chrome développée par QoL Extensions, et sa fonction principale est "Provides some simple Quality-of-Life enhancements to giantbomb.com.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Giant Bomb QoL

Téléchargez les fichiers d'extension Giant Bomb QoL au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Giant Bomb QoL Giant Bomb QoL
ID ciipbadfpnjpnnjchpeaiilodeeeekam
URL Officiel https://chromewebstore.google.com/detail/giant-bomb-qol/ciipbadfpnjpnnjchpeaiilodeeeekam
Description Provides some simple Quality-of-Life enhancements to giantbomb.com.
Taille du Fichier 6.09 MB
Nombre d'Installations 1,293
Version Actuelle 4.21
Dernière Mise à Jour 2023-09-21
Date de Publication 2020-05-23
Évaluation 5.00/5 Total 22 Évaluations
Développeur QoL Extensions
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lrkissling/giant-bomb-qol
URL de la Page d'Aide https://www.giantbomb.com/forums/general-discussion-30/giant-bomb-qol-a-web-extension-that-provides-quali-1810362/
Langues Prises en Charge 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"
    }
}