Skip to content

GGStopotS - because gg is the essence

Notifications You must be signed in to change notification settings

0xAndre/GGStopotS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

GGStopotS

GGStopotS is a cheat to stopots.com game. Is a browser extension that allows you to get the stopots game solutions. The project's objective is to learn more about modify the behavior of the browser or web pages loaded by the browser.

Browser Compatibility

The extension only works in Firefox (tested @ 105.0.1). To run this extension e.g. in chrome, it's necessary to change the browser object to chrome:

from:

browser.contextMenus.onClicked.addListener((info) => {
  language = info.menuItemId;

  browser.tabs
    .executeScript({
      file: "engine.js",
    })
    .then(onExecuted);
});

to:

browser.contextMenus.onClicked.addListener((info) => {
  language = info.menuItemId;

  chrome.tabs
    .executeScript({
      file: "engine.js",
    })
    .then(onExecuted);
});

This method has not been tested in chrome!

How it Works

  1. Open Firefox and load the about:debugging page.
  2. Click Load Temporary Add-on and select the manifest.json
  3. Join StopotS game
  4. Enjoy

Contribute

Feel free to contribute. I'm updating the word list in Portuguese words/words_pt.json.

There are many ways in which you can participate in this project:

  • Submit pr with new words list;
  • Contributing directly to the code base.

Publish

This extension is not published, use about:debugging.