Added send, fixed a bug in #89

This commit is contained in:
ManeraKai 2022-03-10 10:30:23 +03:00
parent e9883e5d34
commit d3df133f4e
No known key found for this signature in database
GPG Key ID: 5ABC31FFD562E337
20 changed files with 572 additions and 15 deletions

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="33.866665mm"
height="33.866665mm"
viewBox="0 0 33.866665 33.866665"
version="1.1"
id="svg898"
sodipodi:docname="send-icon.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs7" />
<sodipodi:namedview
id="namedview5"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="2.6623698"
inkscape:cx="46.950653"
inkscape:cy="88.079425"
inkscape:window-width="1888"
inkscape:window-height="1060"
inkscape:window-x="32"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg898" />
<circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.17791"
id="path1168"
cx="16.933332"
cy="16.933332"
r="16.933332" />
<g
id="layer1"
transform="matrix(0.36395732,0,0,0.36395732,5.286709,5.2870656)">
<path
id="cloud-upload"
d="m 64,34.286 a 17.033,17.033 0 0 1 -4.406,11.428 14.857,14.857 0 0 1 -10.558,4.572 h -2.179 v -6.857 h 2.179 a 8.004,8.004 0 0 0 5.468,-2.31 10.184,10.184 0 0 0 2.639,-6.833 11.442,11.442 0 0 0 -11.429,-11.429 c -0.377,0 -2.312,0.242 -3.49,0.394 A 1.136,1.136 0 0 1 41.003,22.487 L 40.537,21.13 A 14.103,14.103 0 0 0 28.821,11.498 13.666,13.666 0 0 0 14.091,28.277 l 0.489,2.087 a 1.143,1.143 0 0 1 -0.783,1.355 l -2.054,0.62 a 6.794,6.794 0 0 0 -4.886,6.518 4.604,4.604 0 0 0 0.947,2.808 5.539,5.539 0 0 0 4.089,1.764 h 5.25 v 6.857 h -5.25 A 12.236,12.236 0 0 1 2.213,45.634 11.506,11.506 0 0 1 0,38.857 13.573,13.573 0 0 1 6.944,26.973 19.51,19.51 0 0 1 6.857,25.143 20.563,20.563 0 0 1 45.844,16 18.307,18.307 0 0 1 64,34.286 Z M 32.923,32.123 a 1.143,1.143 0 0 0 -1.846,0 l -8.592,11.775 a 1.143,1.143 0 0 0 0.923,1.816 h 5.163 v 12.572 a 1.143,1.143 0 0 0 1.143,1.143 h 4.572 a 1.143,1.143 0 0 0 1.143,-1.143 V 45.714 h 5.163 a 1.143,1.143 0 0 0 0.923,-1.816 z"
stroke-width="2.286"
fill="#45a1ff"
fill-opacity="1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,188 @@
window.browser = window.browser || window.chrome;
import commonHelper from './common.js'
const targets = [
/^https?:\/\/send\.firefox\.com\/$/,
/^https?:\/\/sendfiles\.online\/$/
];
let redirects = {
"send": {
"normal": [
"https://send.silkky.cloud",
"https://send.turingpoint.de",
"https://send.ephemeral.land",
"https://send.monks.tools",
"https://send.jeugdhulp.be",
"https://send.aurorabilisim.com",
"https://nhanh.cloud",
"https://send.datahoarder.dev",
"https://send.navennec.net",
"https://fileupload.ggc-project.de",
"https://drop.chapril.org",
"https://files.psu.ru",
"https://send.portailpro.net",
"https://bytefile.de",
"https://transfer.acted.org ",
],
"tor": []
}
}
const getRedirects = () => redirects;
const getCustomRedirects = function () {
return {
"send": {
"normal": [...sendNormalRedirectsChecks, ...sendNormalCustomRedirects]
},
};
};
function setRedirects(val) {
redirects.send = val;
browser.storage.local.set({ sendTargetsRedirects: redirects })
console.log("sendTargetsRedirects: ", val)
for (const item of sendNormalRedirectsChecks)
if (!redirects.send.normal.includes(item)) {
var index = sendNormalRedirectsChecks.indexOf(item);
if (index !== -1) sendNormalRedirectsChecks.splice(index, 1);
}
setSendNormalRedirectsChecks(sendNormalRedirectsChecks);
for (const item of sendTorRedirectsChecks)
if (!redirects.send.normal.includes(item)) {
var index = sendTorRedirectsChecks.indexOf(item);
if (index !== -1) sendTorRedirectsChecks.splice(index, 1);
}
setSendTorRedirectsChecks(sendTorRedirectsChecks);
}
let sendNormalRedirectsChecks;
const getSendNormalRedirectsChecks = () => sendNormalRedirectsChecks;
function setSendNormalRedirectsChecks(val) {
sendNormalRedirectsChecks = val;
browser.storage.local.set({ sendNormalRedirectsChecks })
console.log("sendNormalRedirectsChecks: ", val)
}
let sendTorRedirectsChecks;
const getSendTorRedirectsChecks = () => sendTorRedirectsChecks;
function setSendTorRedirectsChecks(val) {
sendTorRedirectsChecks = val;
browser.storage.local.set({ sendTorRedirectsChecks })
console.log("sendTorRedirectsChecks: ", val)
}
let sendNormalCustomRedirects = [];
const getSendNormalCustomRedirects = () => sendNormalCustomRedirects;
function setSendNormalCustomRedirects(val) {
sendNormalCustomRedirects = val;
browser.storage.local.set({ sendNormalCustomRedirects })
console.log("sendNormalCustomRedirects: ", val)
}
let sendTorCustomRedirects = [];
const getSendTorCustomRedirects = () => sendTorCustomRedirects;
function setSendTorCustomRedirects(val) {
sendTorCustomRedirects = val;
browser.storage.local.set({ sendTorCustomRedirects })
console.log("sendTorCustomRedirects: ", val)
}
let disable;
const getDisable = () => disable;
function setDisable(val) {
disable = val;
browser.storage.local.set({ disableSendTarget: disable })
}
let protocol;
const getProtocol = () => protocol;
function setProtocol(val) {
protocol = val;
browser.storage.local.set({ sendTargetsProtocol: val })
console.log("sendTargetsProtocol: ", val)
}
function redirect(url, type, initiator) {
if (disable) return null;
if (initiator && ([...redirects.send.normal, ...sendNormalCustomRedirects].includes(initiator.origin) || targets.includes(initiator.host))) return null;
if (!targets.some((rx) => rx.test(url.href))) return null;
if (type != "main_frame") return null;
let instancesList;
if (protocol == 'normal') instancesList = [...sendNormalRedirectsChecks, ...sendNormalCustomRedirects];
if (protocol == 'tor') instancesList = [...sendTorRedirectsChecks, ...sendTorCustomRedirects];
if (instancesList.length === 0) return null;
let randomInstance = commonHelper.getRandomInstance(instancesList);
let pathName = url.pathname.replace(new RegExp(/@.*\/(?=video)/), "");
return `${randomInstance}${pathName}`;
}
async function init() {
return new Promise(resolve => {
fetch('/instances/data.json').then(response => response.text()).then(data => {
let dataJson = JSON.parse(data);
browser.storage.local.get(
[
"disableSendTarget",
"sendTargetsRedirects",
"sendNormalRedirectsChecks",
"sendNormalCustomRedirects",
"sendTorRedirectsChecks",
"sendTorCustomRedirects",
"sendTargetsProtocol"
],
r => {
disable = r.disableSendTarget ?? false;
protocol = r.sendTargetsProtocol ?? "normal";
if (r.sendTargetsRedirects) redirects = r.sendTargetsRedirects;
sendNormalRedirectsChecks = r.sendNormalRedirectsChecks ?? [...redirects.send.normal];
sendNormalCustomRedirects = r.sendNormalCustomRedirects ?? [];
sendTorRedirectsChecks = r.sendTorRedirectsChecks ?? [...redirects.send.tor];
sendTorCustomRedirects = r.sendTorCustomRedirects ?? [];
resolve();
}
)
});
});
}
export default {
getRedirects,
getCustomRedirects,
setRedirects,
getDisable,
setDisable,
getProtocol,
setProtocol,
getSendNormalRedirectsChecks,
setSendNormalRedirectsChecks,
getSendTorRedirectsChecks,
setSendTorRedirectsChecks,
getSendTorCustomRedirects,
setSendTorCustomRedirects,
getSendNormalCustomRedirects,
setSendNormalCustomRedirects,
redirect,
init,
};

View File

@ -2,7 +2,7 @@ window.browser = window.browser || window.chrome;
import commonHelper from './common.js'
const targets = /^https?:\/\/.*wikipedia\.org\//
const targets = /^https?:\/\/(.*\.|)wikipedia\.org/
let redirects = {
"wikiless": {

View File

@ -12,6 +12,7 @@ import mediumHelper from "../../assets/javascripts/helpers/medium.js";
import imgurHelper from "../../assets/javascripts/helpers/imgur.js";
import tiktokHelper from "../../assets/javascripts/helpers/tiktok.js";
import pixivHelper from "../../assets/javascripts/helpers/pixiv.js";
import sendTargetsHelper from "../../assets/javascripts/helpers/sendTargets.js";
import generalHelper from "../../assets/javascripts/helpers/general.js";
import youtubeMusicHelper from "../../assets/javascripts/helpers/youtubeMusic.js";
@ -31,6 +32,7 @@ async function wholeInit() {
imgurHelper.init()
tiktokHelper.init()
pixivHelper.init()
sendTargetsHelper.init()
generalHelper.init()
}
wholeInit();
@ -52,7 +54,6 @@ browser.webRequest.onBeforeRequest.addListener(
var newUrl;
if (!newUrl) newUrl = youtubeHelper.redirect(url, details, initiator)
// if (youtubeHelper.isPipedorInvidious(newUrl ?? url, details.type, 'invidious')) newUrl = youtubeHelper.addUrlParams(newUrl ?? url);
if (youtubeMusicHelper.isYoutubeMusic(url, initiator)) newUrl = youtubeMusicHelper.redirect(url, details.type)
if (!newUrl) newUrl = twitterHelper.redirect(url, initiator);
@ -71,6 +72,8 @@ browser.webRequest.onBeforeRequest.addListener(
if (!newUrl) newUrl = pixivHelper.redirect(url, details.type, initiator);
if (!newUrl) newUrl = sendTargetsHelper.redirect(url, details.type, initiator);
if (translateHelper.isTranslate(url, initiator)) newUrl = translateHelper.redirect(url);
if (searchHelper.isSearch(url)) newUrl = searchHelper.redirect(url)
@ -110,10 +113,6 @@ browser.tabs.onRemoved.addListener((tabId) => {
}
});
browser.webRequest.onResponseStarted.addListener(
details => {
console.log("onResponseStarted");
@ -121,13 +120,13 @@ browser.webRequest.onResponseStarted.addListener(
if (!autoRedirect) return null;
if (details.statusCode >= 500) {
console.log("statusCode", details.statusCode);
if (details.type == 'main_frame' && details.statusCode >= 500) {
const url = new URL(details.url);
let newUrl;
newUrl = youtubeHelper.changeInstance(url);
if (!newUrl) newUrl = twitterHelper.changeInstance(url);
if (!newUrl) newUrl = instagramHelper.changeInstance(url);
@ -145,12 +144,9 @@ browser.webRequest.onResponseStarted.addListener(
if (!newUrl) newUrl = wikipediaHelper.changeInstance(url)
if (newUrl) {
browser.tabs.update({ url: '../errors/instance_offline.html' });
browser.tabs.update({ url: '/pages/errors/instance_offline.html' });
setTimeout(() => browser.tabs.update({ url: newUrl }), 2000);
}
}
},
{ urls: ["<all_urls>"], }
@ -162,8 +158,6 @@ browser.tabs.onUpdated.addListener(
try { url = new URL(changeInfo.url); }
catch (_) { return }
if (youtubeHelper.isPipedorInvidious(url, 'main_frame', 'piped')) youtubeHelper.initPipedLocalStorage(tabId);
// if (twitterHelper.isNitter(url, 'main_frame')) twitterHelper.initNitterCookies();
if (instagramHelper.isBibliogram(url)) instagramHelper.initBibliogramCookies(url);
// if (changeInfo.url && youtubeHelper.isPipedorInvidious(url, 'main_frame', 'pipedMaterial')) youtubeHelper.initPipedMaterialLocalStorage(tabId);
// if (changeInfo.url && youtubeHelper.isUrlPipedorInvidious(changeInfo.url, 'invidious')) youtubeHelper.initInvidiousCookies(tabId);
});

View File

@ -87,6 +87,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -88,6 +88,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -89,6 +89,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -89,7 +89,13 @@
</svg>
<a href="../maps/maps.html" class="selected">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -88,6 +88,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -88,6 +88,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -88,6 +88,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>

View File

@ -88,6 +88,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -0,0 +1,168 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="../../../assets/images/libredirect.svg" />
<link href="../../stylesheets/styles.css" rel="stylesheet" />
<title>LibRedirect Options: TikTok</title>
</head>
<body class="option">
<section class="links">
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="26px" viewBox="0 0 24 24"
width="26px" fill="currentColor">
<path
d="M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z" />
</svg>
<a href="../general/general.html">General</a>
</div>
<div class="title">
<img src="../../../assets/images/youtube-icon.png" />
<a href="../youtube/youtube.html">YouTube</a>
</div>
<div class="title">
<img src="../../../assets/images/youtube-music-icon.png" />
<a href="../youtubeMusic/youtubeMusic.html">YT Music</a>
</div>
<div class="title">
<img src="../../../assets/images/twitter-icon.png" />
<a href="../twitter/twitter.html">Twitter</a>
</div>
<div class="title">
<img src="../../../assets/images/instagram-icon.png" />
<a href="../instagram/instagram.html">Instagram</a>
</div>
<div class="title">
<img src="../../../assets/images/tiktok-icon.png" />
<a href="../tiktok/tiktok.html">TikTok</a>
</div>
<div class="title">
<img src="../../../assets/images/reddit-icon.png" />
<a href="../reddit/reddit.html">Reddit</a>
</div>
<div class="title">
<img src="../../../assets/images/imgur-icon.png" />
<a href="../imgur/imgur.html">Imgur</a>
</div>
<div class="title">
<img src="../../../assets/images/pixiv-icon.png" />
<a href="../pixiv/pixiv.html">Pixiv</a>
</div>
<div class="title">
<img src="../../../assets/images/wikipedia-icon.svg" />
<a href="../wikipedia/wikipedia.html">Wikipedia</a>
</div>
<div class="title">
<!-- https://markentier.tech/posts/2020/10/medium-icon-svg/ -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1770 1000" fill="currentColor">
<circle cx="500" cy="500" r="500" />
<ellipse ry="475" rx="250" cy="501" cx="1296" />
<ellipse cx="1682" cy="502" rx="88" ry="424" />
</svg>
<a href="../medium/medium.html">Medium</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" />
</svg>
<a href="../search/search.html">Search</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z" />
</svg>
<a href="../translate/translate.html">Translate</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" />
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html" class="selected">Send Files</a>
</div>
</section>
<section class="option-block">
<div class="some-block option-block">
<h4>Enable</h4>
<input id="disable-sendTargets" type="checkbox" checked />
</div>
<div class="some-block option-block">
<h4>Protocol</h4>
<select id="protocol">
<option value="normal">Normal</option>
<option value="tor">Tor</option>
</select>
</div>
<hr>
<div id="normal">
<div class="some-block option-block">
<h4>Default Instances</h4>
</div>
<div class="checklist" id="send-normal-checklist"></div>
<hr>
<div class="some-block option-block">
<h4>Custom Instances</h4>
</div>
<form id="custom-send-normal-instance-form">
<div class="some-block option-block">
<input id="send-normal-custom-instance" placeholder="https://send.com" type="url" />
<button type="submit" class="add" id="send-normal-add-instance">
<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 0 24 24" width="20px" fill="currentColor">
<path d="M0 0h24v24H0V0z" fill="none" />
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
</svg>
</button>
</div>
</form>
<div class="checklist" id="send-normal-custom-checklist"></div>
</div>
<div id="tor">
<div class="some-block option-block">
<h4>Default Instances</h4>
</div>
<div class="checklist" id="send-tor-checklist"></div>
<hr>
<div class="some-block option-block">
<h4>Custom Instances</h4>
</div>
<form id="custom-send-tor-instance-form">
<div class="some-block option-block">
<input id="send-tor-custom-instance" placeholder="https://send.com" type="url" />
<button type="submit" class="add" id="send-tor-add-instance">
<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 0 24 24" width="20px" fill="currentColor">
<path d="M0 0h24v24H0V0z" fill="none" />
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
</svg>
</button>
</div>
</form>
<div class="checklist" id="send-tor-custom-checklist"></div>
</div>
</section>
<script type="module" src="../init.js"></script>
<script type="module" src="./sendTargets.js"></script>
<!-- <script src="../../assets/javascripts/localise.js"></script> -->
</body>
</html>

View File

@ -0,0 +1,59 @@
import sendTargetsHelper from "../../../assets/javascripts/helpers/sendTargets.js";
import commonHelper from "../../../assets/javascripts/helpers/common.js";
let disableSendTargetsElement = document.getElementById("disable-sendTargets");
disableSendTargetsElement.addEventListener("change",
(event) => sendTargetsHelper.setDisable(!event.target.checked)
);
let protocolElement = document.getElementById("protocol")
protocolElement.addEventListener("change",
(event) => {
let protocol = event.target.options[protocolElement.selectedIndex].value
sendTargetsHelper.setProtocol(protocol);
changeProtocolSettings(protocol);
}
);
function changeProtocolSettings(protocol) {
let normalDiv = document.getElementById("normal");
let torDiv = document.getElementById("tor");
if (protocol == 'normal') {
normalDiv.style.display = 'block';
torDiv.style.display = 'none';
}
else if (protocol == 'tor') {
normalDiv.style.display = 'none';
torDiv.style.display = 'block';
}
}
sendTargetsHelper.init().then(() => {
disableSendTargetsElement.checked = !sendTargetsHelper.getDisable();
let protocol = sendTargetsHelper.getProtocol();
protocolElement.value = protocol;
changeProtocolSettings(protocol);
commonHelper.processDefaultCustomInstances(
'send',
'normal',
sendTargetsHelper,
document,
sendTargetsHelper.getSendNormalRedirectsChecks,
sendTargetsHelper.setSendNormalRedirectsChecks,
sendTargetsHelper.getSendNormalCustomRedirects,
sendTargetsHelper.setSendNormalCustomRedirects
);
commonHelper.processDefaultCustomInstances(
'send',
'tor',
sendTargetsHelper,
document,
sendTargetsHelper.getSendTorRedirectsChecks,
sendTargetsHelper.setSendTorRedirectsChecks,
sendTargetsHelper.getSendTorCustomRedirects,
sendTargetsHelper.setSendTorCustomRedirects
)
})

View File

@ -88,6 +88,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -88,6 +88,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">
<div class="some-block option-block">

View File

@ -89,6 +89,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -88,6 +88,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">
<div class="some-block option-block">

View File

@ -89,6 +89,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">

View File

@ -89,6 +89,13 @@
</svg>
<a href="../maps/maps.html">Maps</a>
</div>
<div class="title">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
<path
d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" />
</svg>
<a href="../sendTargets/sendTargets.html">Send Files</a>
</div>
</section>
<section class="option-block">