Last active
December 2, 2021 00:47
Xbox 360 Marketplace Price Position Fixer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name xbox 360 marketplace price position fixer | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2.1 | |
// @description fix CSS position of price in list of search results and detail page of a game in web site | |
// @author ovigilante | |
// @match https://marketplace.xbox.com/*/Search?* | |
// @match https://marketplace.xbox.com/*/Product/* | |
// @license MIT | |
// @grant none | |
////allows running user script sooner: | |
// @run-at document-start | |
// ==/UserScript== | |
/* | |
Notes: | |
due to a bug in the xbox 360 marketplace, the price of the games are position in the bottom of all list (search result and detail page of a game) | |
this is a script to allow google chrome to correct position of price without any manual requirements for the user | |
*/ | |
console.log("xbox 360 marketplace price position fixer has been loaded"); | |
var searchPidl = true; | |
if(searchPidl === true) | |
{ | |
var checkPrerequisites = window.setInterval(function() | |
{ | |
var preReqElement = (document.querySelectorAll(".SearchTiles .PriceArea") || document.querySelectorAll(".RelatedTiles .PriceArea") || document.querySelectorAll(".ProductPrices .Purchased")); | |
if(preReqElement != null) | |
{ | |
console.log("the script has been loaded. fixing price position..."); | |
var searchTiles = document.querySelectorAll(".SearchTiles .PriceArea"); | |
for (let i = 0; i < searchTiles.length; i++) | |
{ | |
searchTiles[i].style.position = "static"; | |
} | |
var relatedTiles = document.querySelectorAll(".RelatedTiles .PriceArea"); | |
for (let i = 0; i < relatedTiles.length; i++) | |
{ | |
relatedTiles[i].style.position = "static"; | |
} | |
var productPrices = document.querySelectorAll(".ProductPrices .Purchased"); | |
for (let i = 0; i < productPrices.length; i++) | |
{ | |
productPrices[i].style.position = "static"; | |
} | |
console.log("price position fixed"); | |
clearInterval(checkPrerequisites); | |
//debugger; | |
} | |
}, 5000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment