LoginSignup
5
6

More than 5 years have passed since last update.

Supreme 購入ページのブックマークレット

Last updated at Posted at 2018-03-27

最近実店舗では物騒な話が多く、徹夜で並ぶのも厳しいです。
Webサイトでは毎週土曜日の11時に新アイテムが並びますが、サイト自体も過負荷で重たくなり、欲しいアイテムをカートに入れて、住所を入れている間に sold out となってしまいます。

そこで購入ページの入力を迅速に済ますためブックマークレットを作成しました。

javascript:(function(){
  document.getElementById("credit_card_last_name").value = "[苗字]";
  document.getElementById("credit_card_first_name").value = "[名前]";
  document.getElementById("order_email").value = "[Eメール]";
  document.getElementById("order_tel").value = "[電話番号]";
  document.getElementById("order_billing_state").value = " 山形県";
  document.getElementById("order_billing_city").value = " 山形県";
  document.getElementById("order_billing_address").value = " 山形県";
  document.getElementById("order_billing_zip").value = "000-0000";
  document.getElementById("credit_card_type").value = "american_express";
  document.getElementById("cnb").value = "1234 5678 9012 3456";
  document.getElementById("credit_card_month").value = "09";
  document.getElementById("credit_card_year").value = "2020";
  document.getElementById("vval").value = "222";
  document.getElementById("order_terms").checked = true ;
})();

欲しいアイテムをカートに入れて、購入手続きボタンをクリックするところまでは自力で頑張ります。サイトではjqueryも読み込まれていましたが、Vanilla JS を利用しています。

選択式の項目(order_billing_state, credit_card_type)は以下から指定します。

order_billing_state

最初に何故か半角スペースが入ってました。

" 北海道"," 青森県"," 岩手県"," 宮城県"," 秋田県"," 山形県"," 福島県"," 茨城県"," 栃木県"," 群馬県"," 埼玉県"," 千葉県"," 東京都"," 神奈川県"," 新潟県"," 富山県"," 石川県"," 福井県"," 山梨県"," 長野県"," 岐阜県"," 静岡県"," 愛知県"," 三重県"," 滋賀県"," 京都府"," 大阪府"," 兵庫県"," 奈良県"," 和歌山県"," 鳥取県"," 島根県"," 岡山県"," 広島県"," 山口県"," 徳島県"," 香川県"," 愛媛県"," 高知県"," 福岡県"," 佐賀県"," 長崎県"," 熊本県"," 大分県"," 宮崎県"," 鹿児島県"," 沖縄県",

credit_card_type

以下の4種類から指定が可能です。

visa, american_express, master, jcb, cod

ブックマークに登録

自分の情報に差し替えたら、以下の様に余計改行を消します。

javascript:(function(){document.getElementById("credit_card_last_name").value = "[苗字]";document.getElementById("credit_card_first_name").value = "[名前]";document.getElementById("order_email").value = "[Eメール]";document.getElementById("order_tel").value = "[電話番号]";document.getElementById("order_billing_state").value = " 山形県";document.getElementById("order_billing_city").value = " 山形県";document.getElementById("order_billing_address").value = " 山形県";document.getElementById("order_billing_zip").value = "000-0000";document.getElementById("credit_card_type").value = "american_express";document.getElementById("cnb").value = "1234 5678 9012 3456";document.getElementById("credit_card_month").value = "09";document.getElementById("credit_card_year").value = "2020";document.getElementById("vval").value = "222";document.getElementById("order_terms").checked = true ;})();

これをブックマークにセット(chromeならブックマークマネージャーから)して、購入ページでブックマークをクリックすれば情報が一瞬で入力されます。

そろそろシーズン終わりで、サイト上のShopはクローズとなりますが、予定がある方は試してみてください。

ただし、ご利用は自己責任でお願いします:bow:

5
6
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6