Say Cheese!
3 | 4 | 9 | 10 | 11 | 12 | 13 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /dateDiff/icons/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl143/jsDemos/f84e7526951b89971f71d06f2eb3d6b032e7ec27/dateDiff/icons/icon_32.png -------------------------------------------------------------------------------- /dateDiff/icons/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl143/jsDemos/f84e7526951b89971f71d06f2eb3d6b032e7ec27/dateDiff/icons/icon_48.png -------------------------------------------------------------------------------- /dateDiff/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "description": "Days diffence finder - Find number of days between two given dates (For explicitly lazy souls[like me] who think counting days is much hassle)", 4 | "manifest_version": 2, 5 | "name": "Date diff", 6 | "version": "1.0", 7 | "homepage_url": "https://github.com/tsl143/jsDemos/dateDiff", 8 | "icons": { 9 | "48": "icons/icon_48.png" 10 | }, 11 | 12 | "browser_action": { 13 | "default_icon": "icons/icon_32.png", 14 | "default_title": "Date Diff finder", 15 | "default_popup": "popup/date.html" 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /dateDiff/popup/date.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |30 | 31 | | 32 |33 | 34 | | 35 |
38 | |