Direct download from Nokia Ovi Store (WaybackMachine Backup)

Replaces the Download Button on the Nokia Ovi Store to allow direct downloads from the backup version of the website.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name        Direct download from Nokia Ovi Store (WaybackMachine Backup)
// @namespace   StephenP
// @description Replaces the Download Button on the Nokia Ovi Store to allow direct downloads from the backup version of the website.
// @include     http://web.archive.org/web/*/http://store.ovi.com/content/*
// @version     1
// @grant       none
// ==/UserScript==
var dlButton = document.getElementById('sendViaSuiteBtn');
var price = document.getElementById('price_pricerange');
if (price.innerHTML.trim().localeCompare('Free') === 0) {
  var link = window.location.href.toString();
  var qmpos = link.search('clickSource');
  link = link.substring(0, qmpos - 1) + '/download';
  dlButton.parentElement.innerHTML = '<button style="border-radius: 8px;" id="sendViaSuiteBtn" onClick="window.open(\'' + link + '\',\'_self\')">Download Now!</button>';
} 
else {
  dlButton.parentElement.innerHTML = '<button class="disabled" style="border-radius: 8px;" id="sendViaSuiteBtn">Download not available.</button>';
}