Created
February 6, 2023 23:05
-
-
Save onyxblade/8e9aaad85ad880af7fa6d5641249b82e to your computer and use it in GitHub Desktop.
Tampermonkey userscript to fix Cineplex player "Error loading. Tap to retry." on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name New Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://store.cineplex.com/Product/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=cineplex.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
Object.defineProperty(navigator,"platform", { | |
get: function () { return "MacIntel"; }, | |
set: function (a) {} | |
}) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment