Chip Download Change

Swaps the irritating link to the Chip Installer with the normal link for "manual" download.

Tính đến 11-03-2016. Xem phiên bản mới nhất.

// ==UserScript==
// @name	      	Chip Download Change
// @name:de      	Chip Download Wechsel
// @version      	2.0
// @description		Swaps the irritating link to the Chip Installer with the normal link for "manual" download.
// @description:de	Vertauscht den nervigen Link zum Chip Installer mit dem normalen Link zum "manuellen" Download.
// @include     	*chip.de/downloads/*
// @author       	Jonas Thelemann
// @license      	GPL version 3 or any later version; http://www.gnu.org/licenses/gpl.txt
// @grant        	none
// @icon         	https://dl.dropboxusercontent.com/u/74738294/Grease/ChipDownloadChange/chip-online.png
// @namespace    	https://greasyfork.org/users/4685
// ==/UserScript==

//Verify compatibility
if (document.getElementsByClassName('Download-Button')[0] !== null && document.getElementsByClassName('ManualInstallLink')[0] !== null) {
  //Get link elements
  var jsLink1 = document.getElementsByClassName('Download-Button')[0];
  var jsLink2 = document.getElementsByClassName('Download-Button')[1];
  var manualLink1 = document.getElementsByClassName('ManualInstallLink')[0];
  var manualLink2 = document.getElementsByClassName('ManualInstallLink')[1];
  
  //Change text
  manualLink1.innerHTML = 'Chip-Installer';
  manualLink2.innerHTML = 'Chip-Installer';
  
  //Swap links
  jsLink2.href = manualLink1.href;
  manualLink2.href = jsLink1.href;
  jsLink1.href = jsLink2.href;
  manualLink1.href = manualLink2.href;
}