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
| // ============================================================================= | |
| // MedBillFiler — Google Apps Script | |
| // ============================================================================= | |
| // HOW TO USE: | |
| // 1. Paste this file into script.google.com (new standalone project) | |
| // 2. Fill in SHEET_ID below (from your Google Sheet URL) | |
| // 3. Confirm SHEET_NAME matches your tab name | |
| // 4. Run setupTrigger() once from the editor to start automated processing | |
| // 5. Forward scanned bills to me+healthbill@gmail.com with subject: | |
| // Provider/Comment, YYYYMMDD, Amount |
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
| /** | |
| * 3D cube | |
| */ | |
| body { | |
| perspective: 99999px; | |
| } | |
| body > section { | |
| display: inline-block; |
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
| /* Checkbox Hack */ | |
| input[type=checkbox] { | |
| position: absolute; | |
| top: -9999px; | |
| left: -9999px; | |
| } | |
| label { | |
| -webkit-appearance: push-button; | |
| appearance: button; |