This commit is contained in:
parent
c1f6239c51
commit
2262a1c15e
|
@ -6,3 +6,5 @@
|
||||||
- Drag the `libredirect-1.5.5.crx` file to the page
|
- Drag the `libredirect-1.5.5.crx` file to the page
|
||||||
|
|
||||||
Updates are automatic
|
Updates are automatic
|
||||||
|
|
||||||
|
![](./img/install_chromium.mp4)
|
Binary file not shown.
|
@ -112,7 +112,7 @@ let allPopupFrontends = [
|
||||||
"imgur",
|
"imgur",
|
||||||
"reddit",
|
"reddit",
|
||||||
"pixiv",
|
"pixiv",
|
||||||
// "spotify",
|
"spotify",
|
||||||
"search",
|
"search",
|
||||||
"translate",
|
"translate",
|
||||||
"maps",
|
"maps",
|
||||||
|
|
|
@ -3,6 +3,12 @@
|
||||||
"description": "A web extension that redirects popular sites to alternative privacy-friendly frontends and backends",
|
"description": "A web extension that redirects popular sites to alternative privacy-friendly frontends and backends",
|
||||||
"version": "1.5.5",
|
"version": "1.5.5",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
|
"browser_specific_settings": {
|
||||||
|
"gecko": {
|
||||||
|
"id": "7esoorv3@alefvanoon.anonaddy.me",
|
||||||
|
"strict_min_version": "67.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"background": {
|
"background": {
|
||||||
"page": "pages/background/background.html",
|
"page": "pages/background/background.html",
|
||||||
"persistent": true
|
"persistent": true
|
||||||
|
|
|
@ -15,7 +15,7 @@ import pixivHelper from "../../assets/javascripts/helpers/pixiv.js";
|
||||||
import sendTargetsHelper from "../../assets/javascripts/helpers/sendTargets.js";
|
import sendTargetsHelper from "../../assets/javascripts/helpers/sendTargets.js";
|
||||||
import peertubeHelper from "../../assets/javascripts/helpers/peertube.js";
|
import peertubeHelper from "../../assets/javascripts/helpers/peertube.js";
|
||||||
import lbryHelper from "../../assets/javascripts/helpers/lbry.js";
|
import lbryHelper from "../../assets/javascripts/helpers/lbry.js";
|
||||||
// import spotifyHelper from "../../assets/javascripts/helpers/spotify.js";
|
import spotifyHelper from "../../assets/javascripts/helpers/spotify.js";
|
||||||
import generalHelper from "../../assets/javascripts/helpers/general.js";
|
import generalHelper from "../../assets/javascripts/helpers/general.js";
|
||||||
import youtubeMusicHelper from "../../assets/javascripts/helpers/youtubeMusic.js";
|
import youtubeMusicHelper from "../../assets/javascripts/helpers/youtubeMusic.js";
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ async function wholeInit() {
|
||||||
await sendTargetsHelper.init();
|
await sendTargetsHelper.init();
|
||||||
await peertubeHelper.init();
|
await peertubeHelper.init();
|
||||||
await lbryHelper.init();
|
await lbryHelper.init();
|
||||||
// await spotifyHelper.init();
|
await spotifyHelper.init();
|
||||||
await generalHelper.init();
|
await generalHelper.init();
|
||||||
}
|
}
|
||||||
await wholeInit();
|
await wholeInit();
|
||||||
|
@ -83,7 +83,7 @@ browser.webRequest.onBeforeRequest.addListener(
|
||||||
|
|
||||||
if (!newUrl) newUrl = lbryHelper.redirect(url, details.type, initiator);
|
if (!newUrl) newUrl = lbryHelper.redirect(url, details.type, initiator);
|
||||||
|
|
||||||
// if (!newUrl) newUrl = spotifyHelper.redirect(url, details.type, initiator);
|
if (!newUrl) newUrl = spotifyHelper.redirect(url, details.type, initiator);
|
||||||
|
|
||||||
if (!newUrl) newUrl = translateHelper.redirect(url);
|
if (!newUrl) newUrl = translateHelper.redirect(url);
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ browser.webRequest.onResponseStarted.addListener(
|
||||||
|
|
||||||
if (!newUrl) newUrl = lbryHelper.switchInstance(url);
|
if (!newUrl) newUrl = lbryHelper.switchInstance(url);
|
||||||
|
|
||||||
// if (!newUrl) newUrl = spotifyHelper.switchInstance(url);
|
if (!newUrl) newUrl = spotifyHelper.switchInstance(url);
|
||||||
|
|
||||||
if (newUrl) browser.tabs.update(details.tabId, { url: `/pages/errors/instance_offline.html?url=${encodeURIComponent(newUrl)}` });
|
if (newUrl) browser.tabs.update(details.tabId, { url: `/pages/errors/instance_offline.html?url=${encodeURIComponent(newUrl)}` });
|
||||||
|
|
||||||
|
|
|
@ -51,10 +51,10 @@
|
||||||
<img src="../../../assets/images/pixiv-icon.svg" />
|
<img src="../../../assets/images/pixiv-icon.svg" />
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
||||||
|
@ -262,13 +262,13 @@
|
||||||
</div>
|
</div>
|
||||||
<input type="checkbox" id="pixiv" />
|
<input type="checkbox" id="pixiv" />
|
||||||
</div>
|
</div>
|
||||||
<!-- <div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<img src="../../../assets/images/spotify-icon.png">
|
<img src="../../../assets/images/spotify-icon.png">
|
||||||
Spotify
|
Spotify
|
||||||
</div>
|
</div>
|
||||||
<input type="checkbox" id="spotify" />
|
<input type="checkbox" id="spotify" />
|
||||||
</div> -->
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -53,10 +53,10 @@
|
||||||
<img src="../../../assets/images/pixiv-icon.svg" />
|
<img src="../../../assets/images/pixiv-icon.svg" />
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
||||||
|
|
|
@ -52,10 +52,10 @@
|
||||||
<img src="../../../assets/images/pixiv-icon.svg" />
|
<img src="../../../assets/images/pixiv-icon.svg" />
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
||||||
|
|
|
@ -63,10 +63,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<a href="../pixiv/pixiv.html" class="selected">Pixiv</a>
|
<a href="../pixiv/pixiv.html" class="selected">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -52,10 +52,10 @@
|
||||||
<img src="../../../assets/images/pixiv-icon.svg" />
|
<img src="../../../assets/images/pixiv-icon.svg" />
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
||||||
|
|
|
@ -61,10 +61,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -63,10 +63,10 @@
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
|
|
|
@ -52,10 +52,10 @@
|
||||||
<img src="../../../assets/images/pixiv-icon.svg" />
|
<img src="../../../assets/images/pixiv-icon.svg" />
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
<a href="../wikipedia/wikipedia.html" class="selected">Wikipedia</a>
|
<a href="../wikipedia/wikipedia.html" class="selected">Wikipedia</a>
|
||||||
|
|
|
@ -198,9 +198,7 @@ youtubeHelper.init().then(() => {
|
||||||
|
|
||||||
pipedSponsorblockElement.checked = youtubeHelper.getPipedSponsorblock();
|
pipedSponsorblockElement.checked = youtubeHelper.getPipedSponsorblock();
|
||||||
selectSkip = youtubeHelper.getPipedSelectedSkip();
|
selectSkip = youtubeHelper.getPipedSelectedSkip();
|
||||||
console.log("selectSkip", selectSkip)
|
|
||||||
pipedSelectedSkipSponsorElement.checked = selectSkip.includes('sponsor');
|
pipedSelectedSkipSponsorElement.checked = selectSkip.includes('sponsor');
|
||||||
console.log("selectSkip.includes('sponsor')", selectSkip.includes('sponsor'))
|
|
||||||
pipedSelectedSkipIntroElement.checked = selectSkip.includes('intro');
|
pipedSelectedSkipIntroElement.checked = selectSkip.includes('intro');
|
||||||
pipedSelectedSkipOutroElement.checked = selectSkip.includes('outro');
|
pipedSelectedSkipOutroElement.checked = selectSkip.includes('outro');
|
||||||
pipedSelectedSkipPreviewElement.checked = selectSkip.includes('preview');
|
pipedSelectedSkipPreviewElement.checked = selectSkip.includes('preview');
|
||||||
|
|
|
@ -53,10 +53,10 @@
|
||||||
<img src="../../../assets/images/pixiv-icon.svg" />
|
<img src="../../../assets/images/pixiv-icon.svg" />
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
||||||
|
|
|
@ -53,10 +53,10 @@
|
||||||
<img src="../../../assets/images/pixiv-icon.svg" />
|
<img src="../../../assets/images/pixiv-icon.svg" />
|
||||||
<a href="../pixiv/pixiv.html">Pixiv</a>
|
<a href="../pixiv/pixiv.html">Pixiv</a>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<a href="../spotify/spotify.html">Spotify</a>
|
<a href="../spotify/spotify.html">Spotify</a>
|
||||||
</div> -->
|
</div>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<img src="../../../assets/images/wikipedia-icon.svg" />
|
<img src="../../../assets/images/wikipedia-icon.svg" />
|
||||||
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
|
||||||
|
|
|
@ -77,13 +77,13 @@
|
||||||
<input id="disable-pixiv" type="checkbox" checked />
|
<input id="disable-pixiv" type="checkbox" checked />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div id="spotify" class="some-block">
|
<div id="spotify" class="some-block">
|
||||||
<a class="title" href="https://spotify.com">
|
<a class="title" href="https://spotify.com">
|
||||||
<img src="../../../assets/images/spotify-icon.png" />
|
<img src="../../../assets/images/spotify-icon.png" />
|
||||||
<h4>Spotify</h4>
|
<h4>Spotify</h4>
|
||||||
</a>
|
</a>
|
||||||
<input id="disable-spotify" type="checkbox" checked />
|
<input id="disable-spotify" type="checkbox" checked />
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
<div id="wikipedia" class="some-block">
|
<div id="wikipedia" class="some-block">
|
||||||
<a class="title" href="https://wikipedia.org">
|
<a class="title" href="https://wikipedia.org">
|
||||||
|
|
|
@ -15,7 +15,7 @@ import mediumHelper from "../../assets/javascripts/helpers/medium.js";
|
||||||
import imgurHelper from "../../assets/javascripts/helpers/imgur.js";
|
import imgurHelper from "../../assets/javascripts/helpers/imgur.js";
|
||||||
import tiktokHelper from "../../assets/javascripts/helpers/tiktok.js";
|
import tiktokHelper from "../../assets/javascripts/helpers/tiktok.js";
|
||||||
import pixivHelper from "../../assets/javascripts/helpers/pixiv.js";
|
import pixivHelper from "../../assets/javascripts/helpers/pixiv.js";
|
||||||
// import spotifyHelper from "../../assets/javascripts/helpers/spotify.js";
|
import spotifyHelper from "../../assets/javascripts/helpers/spotify.js";
|
||||||
import sendTargetsHelper from "../../assets/javascripts/helpers/sendTargets.js";
|
import sendTargetsHelper from "../../assets/javascripts/helpers/sendTargets.js";
|
||||||
import peertubeHelper from "../../assets/javascripts/helpers/peertube.js";
|
import peertubeHelper from "../../assets/javascripts/helpers/peertube.js";
|
||||||
import lbryHelper from "../../assets/javascripts/helpers/lbry.js";
|
import lbryHelper from "../../assets/javascripts/helpers/lbry.js";
|
||||||
|
@ -52,7 +52,7 @@ async function wholeInit() {
|
||||||
await imgurHelper.init();
|
await imgurHelper.init();
|
||||||
await tiktokHelper.init();
|
await tiktokHelper.init();
|
||||||
await pixivHelper.init();
|
await pixivHelper.init();
|
||||||
// await spotifyHelper.init();
|
await spotifyHelper.init();
|
||||||
await sendTargetsHelper.init();
|
await sendTargetsHelper.init();
|
||||||
await peertubeHelper.init();
|
await peertubeHelper.init();
|
||||||
await lbryHelper.init();
|
await lbryHelper.init();
|
||||||
|
@ -72,7 +72,7 @@ wholeInit().then(() => {
|
||||||
disableImgurElement.checked = !imgurHelper.getDisable();
|
disableImgurElement.checked = !imgurHelper.getDisable();
|
||||||
disableTiktokElement.checked = !tiktokHelper.getDisable();
|
disableTiktokElement.checked = !tiktokHelper.getDisable();
|
||||||
disablePixivElement.checked = !pixivHelper.getDisable();
|
disablePixivElement.checked = !pixivHelper.getDisable();
|
||||||
// disableSpotifyElement.checked = !spotifyHelper.getDisable();
|
disableSpotifyElement.checked = !spotifyHelper.getDisable();
|
||||||
disableMediumElement.checked = !mediumHelper.getDisable();
|
disableMediumElement.checked = !mediumHelper.getDisable();
|
||||||
disablePeertubeElement.checked = !peertubeHelper.getDisable();
|
disablePeertubeElement.checked = !peertubeHelper.getDisable();
|
||||||
disableLbryElement.checked = !lbryHelper.getDisable();
|
disableLbryElement.checked = !lbryHelper.getDisable();
|
||||||
|
@ -129,9 +129,9 @@ disablePixivElement.addEventListener("change",
|
||||||
event => pixivHelper.setDisable(!event.target.checked)
|
event => pixivHelper.setDisable(!event.target.checked)
|
||||||
);
|
);
|
||||||
|
|
||||||
// disableSpotifyElement.addEventListener("change",
|
disableSpotifyElement.addEventListener("change",
|
||||||
// event => spotifyHelper.setDisable(!event.target.checked)
|
event => spotifyHelper.setDisable(!event.target.checked)
|
||||||
// );
|
);
|
||||||
|
|
||||||
disableMediumElement.addEventListener("change",
|
disableMediumElement.addEventListener("change",
|
||||||
event => mediumHelper.setDisable(!event.target.checked)
|
event => mediumHelper.setDisable(!event.target.checked)
|
||||||
|
|
Loading…
Reference in New Issue