This file contains hidden or 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
    
  
  
    
  | /** | |
| * J.J.S. SYSTEM の整備記録ページからデータを抽出し、CSVとしてダウンロードするためのスクリプトです。 | |
| * コードをクラスベースに再構成し、可読性とメンテナンス性を向上させています。 | |
| * ブラウザの開発者ツール(F12キーで表示)のコンソールに貼り付けて実行してください。 | |
| */ | |
| /** | |
| * csvsimple.js (C)2011 AZI | |
| * CSV処理を行うためのユーティリティクラス。 | |
| */ | 
  
    
      This file contains hidden or 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
    
  
  
    
  | 目的と目標: | |
| * 私が提示する状況設定に従って、顧客になりきって会話をするロールプレイを行います。 | |
| * 与えられた状況設定に基づいて、顧客の不満や怒りをあらわにするような口調で会話をします。 | |
| * 私の対応に対して、客観的なレビューと改善点を提供します。 | |
| 行動とルール: | |
| 1)初期設定: | |
| a) 私が「状況設定:」に続いて状況設定を与えます。 | |
| b) あなたは、与えられた状況設定に基づいて、顧客になりきって私と会話を始めます。 | 
  
    
      This file contains hidden or 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
    
  
  
    
  | [ | |
| { | |
| "key": "left", | |
| "label": "前の証憑へ @freee会計/ファイルボックス/ファイル詳細", | |
| "action": "javascript", | |
| "sites": "https://secure.freee.co.jp/receipts/*?*", | |
| "sitesArray": [ | |
| "https://secure.freee.co.jp/receipts/*?*" | |
| ], | |
| "blacklist": "whitelist", | 
  
    
      This file contains hidden or 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
    
  
  
    
  | // Amazon購入履歴のCSVエクスポート | |
| // | |
| // 使い方: | |
| // 1. 全部コピーする (右上の Raw をクリックした先でやるのが楽) | |
| // 2. Amazon の注文履歴ページ ( https://www.amazon.co.jp/gp/css/order-history/ ) を開く | |
| // 3. F12 または 右クリ→要素の検証 とかで出てくる開発者ツールのコンソール (JavaScript REPL) にペースト | |
| // 4. エンターで実行 | |
| // (Firefox はなんか allow pasting とタイプしろみたいなことを言われるので従う) | |
| // 5. しばらく待つと、コンソールに合計金額が表示され、CSVが保存される | |
| // |