diff --git a/contentScripts/addTorrent/addTorrent.js b/contentScripts/addTorrent/addTorrent.js index 1bf3a41..cdbc8d5 100644 --- a/contentScripts/addTorrent/addTorrent.js +++ b/contentScripts/addTorrent/addTorrent.js @@ -48,7 +48,7 @@ if (torrentTitle.includes('1080')) { var discordWebhookUrl, discordUserName, categories; chrome.storage.sync.get(['yggToken', 'discordWebhookUrl', 'discordUserName', 'displayDiscord', 'displayAddCategories', 'categories', 'defaultCategories'], function (value) { if (value.yggToken) { - downloadButton.setAttribute('href', `https://${window.location.host}/rss/download?id=${torrentId}&passkey=${value.yggToken}`); + downloadButton.setAttribute('href', `https://yggapi.eu/torrent/${torrentId}/download?passkey=${value.yggToken}`); } else { var alertYggToken = ''; if (document.readyState !== 'complete') { diff --git a/contentScripts/search/search.js b/contentScripts/search/search.js index 2a4b7da..c6214db 100644 --- a/contentScripts/search/search.js +++ b/contentScripts/search/search.js @@ -15,7 +15,7 @@ chrome.storage.sync.get(['yggToken'], function (value) { var downloadIcon = document.createElement('img') downloadIcon.setAttribute('src', chrome.runtime.getURL("img/download.png")); downloadButton.appendChild(downloadIcon); - downloadButton.setAttribute('href', "https://" + window.location.host + "/rss/download?id=" + torrentId + "&passkey=" + value.yggToken); + downloadButton.setAttribute('href', "https://yggapi.eu/torrent/" + torrentId + "/download?passkey=" + value.yggToken); cell.appendChild(downloadButton); } } diff --git a/manifest.json b/manifest.json index 3d7d953..35c3e20 100644 --- a/manifest.json +++ b/manifest.json @@ -27,22 +27,22 @@ "css/style.css", "img/download.png" ], - "matches": ["https://*.yggtorrent.la/*"] + "matches": ["https://*.yggtorrent.org/*"] } ], "content_scripts": [ { - "matches": ["https://*.yggtorrent.la/torrent/*"], + "matches": ["https://*.yggtorrent.org/torrent/*"], "run_at": "document_idle", "js": ["js/utilsFunctions.js", "contentScripts/addTorrent/addTorrent.js"] }, { - "matches": ["https://*.yggtorrent.la/*"], + "matches": ["https://*.yggtorrent.org/*"], "run_at": "document_idle", "js": ["js/utilsFunctions.js", "contentScripts/allPages/allPages.js"] }, { - "matches": ["https://*.yggtorrent.la/engine/search*"], + "matches": ["https://*.yggtorrent.org/engine/search*"], "run_at": "document_idle", "js": ["js/utilsFunctions.js", "contentScripts/search/search.js"]