├── README.md ├── bookmarklet.js ├── index.html ├── ingot.js └── ingot.min.js /README.md: -------------------------------------------------------------------------------- 1 | # Patched! 2 | Ingot has been patched on Chrome 106 or after. This will not be updated. 3 | 4 | # Ingot 5 | A bookmarklet to disable extensions based on LTBEEF with an interface based on the chrome extension page 6 | 7 | ### Installation 8 | For easy setup go the the website at https://fognetwork.github.io/Ingot 9 | 10 | 1. Show your bookmarks bar with `ctrl + shift + b` 11 | 12 | 2. Right click on the bar and choose `Add Page` 13 | 14 | 3. Set the name to `Ingot` and the URL to the code below or [here](https://github.com/FogNetwork/Ingot/blob/main/bookmarklet.js) 15 | 16 | ```js 17 | javascript:(function () {var a = document.createElement('script');a.src = 'https://cdn.jsdelivr.net/gh/FogNetwork/Ingot/ingot.min.js';document.body.appendChild(a);}()) 18 | ``` 19 | 20 | ## Screenshots 21 |  22 |  23 | -------------------------------------------------------------------------------- /bookmarklet.js: -------------------------------------------------------------------------------- 1 | javascript:(function () {var a = document.createElement('script');a.src = 'https://cdn.jsdelivr.net/gh/FogNetwork/Ingot@latest/ingot.min.js';document.body.appendChild(a);}()) 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |