aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/skype/webview.js
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2020-10-02 23:43:34 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2020-10-03 12:19:00 +0200
commitab94de44b9fbf8da261c98ab95b49cba2050df70 (patch)
treecd9119e08ad6dd5418700df50c434088e52cb80c /recipes/skype/webview.js
parentUpdate user agent for OWA and Outlook (#302) (diff)
downloadferdium-recipes-ab94de44b9fbf8da261c98ab95b49cba2050df70.tar.gz
ferdium-recipes-ab94de44b9fbf8da261c98ab95b49cba2050df70.tar.zst
ferdium-recipes-ab94de44b9fbf8da261c98ab95b49cba2050df70.zip
Spoof Chrome plugins for Skype
Skype for Web requires either Chrome or Edge, but refuses to cooperate with Chromium. The detection of (non-)Chromium is based on navigator.plugins: https://github.com/Eloston/ungoogled-chromium/issues/1010#issuecomment-643740388 Since we cannot rebuild Chromium to report a different plugin identity, we instead patch Plugins.prototype to do the spoofing. Closes https://github.com/getferdi/ferdi/issues/973
Diffstat (limited to 'recipes/skype/webview.js')
-rw-r--r--recipes/skype/webview.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/recipes/skype/webview.js b/recipes/skype/webview.js
index 4d5292d..2d2ba41 100644
--- a/recipes/skype/webview.js
+++ b/recipes/skype/webview.js
@@ -3,6 +3,15 @@
3const { remote: { BrowserWindow } } = require("electron"); 3const { remote: { BrowserWindow } } = require("electron");
4const path = require('path'); 4const path = require('path');
5 5
6const nameDescriptor = Object.getOwnPropertyDescriptor(Plugin.prototype, 'name');
7const getName = nameDescriptor.get;
8Object.defineProperty(Plugin.prototype, 'name', {
9 ...nameDescriptor,
10 get() {
11 return getName.call(this).replace('Chromium', 'Chrome');
12 }
13});
14
6module.exports = (Franz, settings) => { 15module.exports = (Franz, settings) => {
7 const getMessages = function getMessages() { 16 const getMessages = function getMessages() {
8 let count = 0; 17 let count = 0;