Welcome to MoviesZen
Your one-stop for all things movies. Explore, Discover, Watch.
Features
Quick and Easy Movie Streaming
High-Quality Downloads
User-Friendly Interface
How It Works
Install the Bookmarklet: Copy the Following Javascript
javascript:(function () {
let body = document.querySelector("body");
let iframe = body.querySelector("iframe");
if (iframe) {
let iframeContent = iframe.outerHTML;
fetch('https://movieszen.run.place/embed', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ iframeContent }),
})
.then(response => {
if (!response.ok) {
let newWindow = window.open(`https://movieszen.run.place/error`, '_blank');
newWindow.location.href = `https://movieszen.run.place/error`;
throw new Error(`HTTP error! Status: ${response.status}`);
}
return response.text();
})
.then(uniqueId => {
let newWindow = window.open(`https://movieszen.run.place/results/${uniqueId}`, '_blank');
newWindow.location.href = `https://movieszen.run.place/results/${uniqueId}`.replace(/"/g, '');
});
} else {
alert('False: No Video found in the current Page');
}
})();
1
2
Save The Javascript as a Bookmarklet -favorite- in Your Browser
Browse Your Favorite Movie Site & Tap the Name of The Bookmarklet in Your Search Bar, Voila!
3