betterttv icon indicating copy to clipboard operation
betterttv copied to clipboard

BTTV Extension for iPadOS 15

Open michael-gram opened this issue 2 years ago • 2 comments

iPadOS 15 recently introduced browser extension support in Safari. Does this make it possible to bring BTTV to iPad?

https://www.macrumors.com/guide/ios-15-safari-extensions/?Bibblio_source=true https://developer.apple.com/safari/extensions/

michael-gram avatar Sep 23 '21 18:09 michael-gram

BetterTTV does not even support Safari on desktop natively. The only way we support Safari on iOS is through the use of the (paid, $2) Tampermonkey extension, which allows Safari to use the userscript version of BetterTTV. If Tampermonkey is supported on iPad iOS 15, and assuming the Twitch website operates the same in iPad Safari as it does on desktop, then it is possible it will work. Initial investigation, however, shows that Tampermonkey is not yet supported in that environment, and hence, for the moment, neither is BetterTTV.

Nareese avatar Sep 23 '21 21:09 Nareese

use extensión safari ios 15.4 makeover

BC6C96D8-3296-4731-891E-778EF615F23B

link js

// ==UserScript==
// @name            BetterTTV
// @namespace       BTTV
// @description     Enhances Twitch with new features, emotes, and more.
// @copyright       NightDev, LLC
// @icon            https://cdn.betterttv.net/assets/logos/bttv_logo.png
//
// @grant           none
//
// @match           https://*.twitch.tv/*
// @match           https://*.youtube.com/*
//
// @version         0.0.2
// ==/UserScript==

(function betterttv() {
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'https://cdn.betterttv.net/betterttv.js';
    var head = document.getElementsByTagName('head')[0];
    if (!head) return;
    head.appendChild(script);
})()

B7737E4C-D048-46ED-B523-0496E40DEB22

50988EC5-7CA8-443E-AFC1-CBBF58ACB362

ianvatega avatar Mar 29 '22 05:03 ianvatega

closing this as a duplicate of #3158, which would resolve these both.

night avatar Dec 31 '22 04:12 night

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related issues or feature requests.

github-actions[bot] avatar Mar 31 '23 06:03 github-actions[bot]