Инструкция:
- Устанавливаем менеджер юзерскриптов (если не установлен).
- Firefox - Greasemonkey
- Chrome - Tampermonkey
- Нажимаем ссылку для установки скрипта.
- Добавляем скрипт.
- Обновляем стримы на ГГ, должно разблокироваться премиум-качество.
Инструкция:
// ==UserScript== | |
// @name GoodGame free premium quality | |
// @version 0.2.5 | |
// @description This script disables some checks on client if it has the right to use premium | |
// @author deadNightTiger | |
// @match *://goodgame.ru/channel/* | |
// @grant none | |
// @updateURL https://gist.github.com/deadNightTiger/627018fb108e5ab7a44a/raw/gg-free.meta.js | |
// @downloadURL https://gist.github.com/deadNightTiger/627018fb108e5ab7a44a/raw/gg-free.user.js | |
// ==/UserScript== |
// ==UserScript== | |
// @name GoodGame free premium quality | |
// @version 0.2.5 | |
// @description This script disables some checks on client if it has the right to use premium | |
// @author deadNightTiger | |
// @match *://goodgame.ru/channel/* | |
// @grant none | |
// @updateURL https://gist.github.com/deadNightTiger/627018fb108e5ab7a44a/raw/gg-free.meta.js | |
// @downloadURL https://gist.github.com/deadNightTiger/627018fb108e5ab7a44a/raw/gg-free.user.js | |
// ==/UserScript== | |
(function(){ | |
"use strict"; | |
var quality_select = document.querySelector("div.quality-block"); | |
var premium_button = document.querySelector("a[rel=premium]"); | |
if (quality_select && premium_button) { | |
quality_select.click(); | |
premium_button.setAttribute("class", ""); | |
premium_button.setAttribute("rel", ""); | |
premium_button.click(); | |
} | |
})(); |