Skip to content

Instantly share code, notes, and snippets.

@onyxblade
Created February 6, 2023 23:05
Show Gist options
  • Save onyxblade/8e9aaad85ad880af7fa6d5641249b82e to your computer and use it in GitHub Desktop.
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
// ==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