Skip to content

Commit

Permalink
Create iframeplus.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kilgorezer authored Jan 4, 2025
1 parent c791aef commit dfbb644
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions extensions/kilgorezer/iframeplus.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
(function (Scratch) {
"use strict";
// This is a loader that automatically loads the extension from GitHub.
Scratch.fetch(
"https://raw.githubusercontent.com/kilgorezer/turbowarpIframeplus/main/iframeplus.js",
)
.then(function (response) {
return response.text();
})
.then(function (data) {
data.constructor.constructor(data)();
});
})(Scratch);

0 comments on commit dfbb644

Please sign in to comment.