aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/superhuman-email/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/superhuman-email/index.js')
-rw-r--r--recipes/superhuman-email/index.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/recipes/superhuman-email/index.js b/recipes/superhuman-email/index.js
new file mode 100644
index 0000000..311ff8f
--- /dev/null
+++ b/recipes/superhuman-email/index.js
@@ -0,0 +1,11 @@
1// just pass through Franz - Superhuman tab appears, says needs Chrome
2// module.exports = Franz => Franz;
3
4// tried the whole string from the issue example - Superhuman tab appears, says needs Chrome
5// module.exports = Franz => class useragent extends Franz { overrideUserAgent() { return "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10136"; } };
6
7// updated class name to superhuman - Superhuman tab appears, says needs Chrome
8module.exports = Franz => class superhuman extends Franz { overrideUserAgent() { return "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10136"; } };
9
10// Tried shortening to just Chrome lol - Superhuman tab appears, says needs Chrome
11// module.exports = Franz => class superhuman extends Franz { overrideUserAgent() {return "Chrome"; } };