0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

バニラVisaの残高確認ブックマークレット

Posted at

バニラVisaギフトカードの残高確認で毎回番号を入力するのが面倒なので、ブックマークレットを作ってみました。
ブックマークしたURLに追加しておいたお客様番号をテキストボックスに設定するだけです。
SafariとChromeで確認しました。

ブックマークするURL
「0000-0000」は、「お問合せ用お客様番号」の下8桁に置き換えてください
https://vvgift.jp/login.action?0000-0000

お問合せ用お客様番号を設定するブックマークレット
javascript: (function() {
    if (location.search.length==10){
        var nums = location.search.substring(1).split("-");
        document.getElementsByName("contact_number1")[0].value = '6102';
        document.getElementsByName("contact_number2")[0].value = nums[0];
        document.getElementsByName("contact_number3")[0].value = nums[1];
    }
})();

エンコードしたブックマークレット
javascript:(function(){if(location.search.length==10){var%20nums=location.search.substring(1).split("-");document.getElementsByName("contact_number1")[0].value='6102';document.getElementsByName("contact_number2")[0].value=nums[0];document.getElementsByName("contact_number3")[0].value=nums[1];}})();

使い方

1)以下URLをブックマークに追加します
「0000-0000」は、「お問合せ用お客様番号」の下8桁に置き換えてください
https://vvgift.jp/login.action?0000-0000

2)ブックマークレットをブックマークに追加します

3)1のブックマークを開きます

4)2のブックマークを開きます

実行結果
スクリーンショット 2023-04-27 8.52.37.png

次へボタンも自動で押したい場合

次へボタンも自動で押したい場合、7行目に以下追加
document.getElementById("next").click();
0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?