-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dont work now #6
Comments
|
Still Works on firefox. Try using that till i find time to read through the new specs. |
it worked firefox but the cheat dosnt work good i cant even beat paul murphy bot you know how to fix the cheat better? |
If you installed from the firefox webstore, reinstall manually by cloning this repo and adding it to firefox in dev mode. A recent pull request fixed the depth property and provides more accurate moves. |
did that still loses i follow all red things and still lose it says i gonna sac my queen and its a blunder i dont win anything on it i just lose the queen |
well, i guess if you want more accurate calculations, you can try to adjust the depth parameter yourself. Fork and change this code to something like this:
You can keep experimenting with various depths till it works well for you. Larger depths can take longer to calculate and slow your browser down. |
ok thx |
Ever figure out what stopped the ext from working on operaGX/Google? |
and might I suggest eliminating the entering black and white with b and w and just calculate the best moves for both players your side in green and opponents in red? |
Manifeft V2 deprecation. Should be an easy fix on just the manifest.json file. Feel free to contribute. |
i fixed to google "manifest_version": 2, change that to "manifest_version": 3, and it work |
Make a pull request please. I tried that once and it didn't work on Firefox anymore which is why I stopped trying because I was too lazy to read the specs to find out why it stopped working. |
I've been trying the last week but I just don't have the knowledge as I picked up java about a week ago lol. In manifest V3 it removed the ability for an extension to use remotely hosted code and as I assume the stockfish engine counts as remotely hosted code and I don't know how to code the fix for that. I know I would need to bundle the Stockfish engine code with the extension rather than loading it from a remote server but I don't know how to include the Stockfish engine code into the extension's source code and load it locally. |
this comes with not only rearranging how the code actually gets the best move entirely but also makes it a way bigger size extension and having the engine locally means keeping it up to date by yourself. |
Can you make a live streaming version? so that cheats are not visible on the monitor? |
Manifest version 2 is deprecated, and support will be removed in 2024. See https://developer.chrome.com/docs/extensions/develop/migrate/mv2-deprecation-timeline for details.
{
"manifest_version": 2,
"name": "Chesscheat",
"version": "1.1",
"icons": { "16": "icon.png",
"48": "icon.png",
"128": "icon.png" },
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"description": "Always see the optimal move in any chess.com game. Guarantees wins almost 100% of the time",
"content_scripts": [
{
"js": ["scripts/main.js"],
"matches": [
"https://www.chess.com/",
"https://chess.com/"
]
}
]
}
The text was updated successfully, but these errors were encountered: