Complete-PedroPascalsTriangleOfPrestige

26/04/2023, 06:42:54

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Complete-PedroPascalsTriangleOfPrestige
// @namespace   Violentmonkey Scripts
// @match       https://asteriskman7.github.io/PedroPascalsTriangleOfPrestige/
// @grant       none
// @version     1.0.2
// @author      brenda maria
// @license     MIT
// @description 26/04/2023, 06:42:54
// ==/UserScript==
const cheatPanel=`Digite o coluna e o linha que deseja completar: Ex:row,col`;
document.addEventListener("keyup",function(evt){
    if(evt.keyCode=="67"&&evt.altKey&&evt.ctrlKey){
        let inp=prompt(cheatPanel);
        if(inp.length>0){
            app.state.activeCells.forEach( cell => {
              if(cell.name == inp) {
                let mensagem = inp.split(",")
                let row = mensagem[0];
                let col = mensagem[1];

                cell.complete = true;
                app.progressComplete(row, col);
                app.clickableCount = app.activated - (app.completeCount + app.state.activeCells.length);
                app.saveToStorage();
              }
            });
          window.location.reload();
        }
    }
})