├── favicon.ico ├── lexialogo.png ├── index.html ├── cloakinnewtab.js ├── README.md └── main.html /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blobby-Boi/BlobeBM/HEAD/favicon.ico -------------------------------------------------------------------------------- /lexialogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blobby-Boi/BlobeBM/HEAD/lexialogo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | BlobeBM 8 | 9 | 10 | 11 |

Welcome to BlobeBM!

BlobeBM is an HTML program that runs bookmarklets in about:blank. It's very useful if bookmarklets don't work on your device or if they are blocked by your administrator. While the purpose of bookmarklets is lost in BlobeBM, (that is, being able to run code in any website) some bookmarklets are still useful and fun to mess with! 12 |

Please allow popups on this page to launch BlobeBM.

A better version of BlobeBM that can run code on any page can be found here! 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /cloakinnewtab.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var url = "https://blobby-boi.github.io/BlobeBM/main.html"; 3 | 4 | // Open a new about:blank window 5 | var win = window.open(); 6 | 7 | // Set the icon for the window 8 | win.document.head.innerHTML += ''; 9 | 10 | // Set the title of the window 11 | win.document.head.innerHTML += 'Home - PowerUp'; 12 | 13 | // Create an iframe 14 | var iframe = win.document.createElement('iframe'); 15 | 16 | // Set styles for the iframe 17 | iframe.style = "position:fixed;width:100vw;height:100vh;top:0px;left:0px;right:0px;bottom:0px;z-index:2147483647;background-color:white;border:none;"; 18 | 19 | // Check and assign the URL to the iframe 20 | if (url.includes('https://') || url.includes("http://")) { 21 | iframe.src = url; 22 | } else { 23 | iframe.src = "https://" + url; 24 | } 25 | 26 | // Append the iframe to the body of the window 27 | win.document.body.appendChild(iframe); 28 | })(); 29 | 30 | // Redirect to google 31 | window.location.href = "https://google.com"; 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## If you wan't to run code in any page, try [uBlobeBM!](https://blobby-boi.github.io/uBlobeBM) 2 | # https://blobby-boi.github.io/BlobeBM/ 3 | ## Welcome to BlobeBM! 4 | BlobeBM is an HTML program that runs bookmarklets in about:blank. It's very useful if bookmarklets don't work on your device or if they are blocked by your administrator. While the purpose of bookmarklets is lost in BlobeBM, (that is, being able to run code in any website) some bookmarklets are still useful and fun to mess with! 5 | 6 | #### How to use BlobeBM 7 | First, make sure that you allow popups on the page. This is because BlobeBM opens itself in about:blank. If the about:blank window opens, then it means that you have allowed popups, and can move on to the next step. 8 | 9 | Where it says "Enter bookmarklet here", enter the bookmarklet code. Then click on the green "Add Bookmarklet" button. 10 | 11 | It will prompt you for how you want it to be called. Name it something that makes sense, because once you have a long list of bookmarklets, you want it to be easy to tell which one's which. 12 | 13 | Once you enter the name, you should see the bookmarklet show up. It consists of 4 buttons: The blue button is to run the bookmarklet, the remove button is to delete the bookmarklet, and the other 2 buttons are to rename the bookmarklet and edit the bookmarklet. Hovering over the blue button for a few seconds reveals the bookmarklet code. 14 | 15 | You can add as many bookmarklets as you need onto BlobeBM. The bookmarklets will save even if you close the window or shut down your device. 16 | 17 | #### As a bonus for reading this, here's a really fun breakout bookmarklet that works great in BlobeBM: 18 | ###### javascript:(function(){document.body.appendChild(document.createElement('script')).src='https://cdn.jsdelivr.net/gh/Blobby-Boi/BOOKMARKLET-GAMES@main/V5.0BreakoutBookmarklet.js';})(); 19 | 20 | ### Enjoy! 21 | -------------------------------------------------------------------------------- /main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | BlobeBM 7 | 127 | 128 | 129 |
130 |
131 | 132 | BlobeBM: Bookmarklet Runner 133 |
134 |
135 | 136 | 137 |
138 |
139 | 140 |
141 | 142 |
143 | 144 |
145 | 146 | 259 | 260 | 261 | --------------------------------------------------------------------------------