Giant Bomb QoL
Provides some simple Quality-of-Life enhancements to giantbomb.com.
Giant Bomb QoL क्या है?
Giant Bomb QoL QoL Extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides some simple Quality-of-Life enhancements to giantbomb.com."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Giant Bomb QoL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |