Skip to content

Instantly share code, notes, and snippets.

@leaysgur
Created June 8, 2015 07:05
Show Gist options
  • Save leaysgur/bc602fa75508429e1550 to your computer and use it in GitHub Desktop.
Save leaysgur/bc602fa75508429e1550 to your computer and use it in GitHub Desktop.
ShibuyaTSUTAYA在庫検索
(function() {
var isItemPage = location.pathname.split('/')[1] === 'item';
if (isItemPage) {
var hasParam = location.search.length !== 0;
var addParam = hasParam ? '&storeId=2312' : '?storeId=2312';
location.replace(location.href + addParam);
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment