├── blog2.txt ├── lib └── foundation │ ├── css │ ├── app.css │ └── foundation.min.css │ ├── js │ ├── app.js │ └── vendor │ │ └── what-input.js │ └── slick │ ├── ajax-loader.gif │ ├── fonts │ ├── slick.eot │ ├── slick.ttf │ ├── slick.woff │ └── slick.svg │ ├── config.rb │ ├── slick.less │ ├── slick.scss │ ├── slick.css │ ├── slick-theme.css │ ├── slick-theme.less │ ├── slick-theme.scss │ └── slick.min.js ├── assets └── images │ ├── icon16.png │ ├── icon19.png │ ├── icon38.png │ ├── icon48.png │ ├── icon128.png │ └── LICENSE ├── manifest.json ├── blog.txt ├── popup.html ├── popup.js ├── README.md ├── background_script.js ├── content_script.js └── LICENSE /blog2.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/foundation/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/foundation/js/app.js: -------------------------------------------------------------------------------- 1 | $(document).foundation() 2 | -------------------------------------------------------------------------------- /assets/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/assets/images/icon16.png -------------------------------------------------------------------------------- /assets/images/icon19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/assets/images/icon19.png -------------------------------------------------------------------------------- /assets/images/icon38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/assets/images/icon38.png -------------------------------------------------------------------------------- /assets/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/assets/images/icon48.png -------------------------------------------------------------------------------- /assets/images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/assets/images/icon128.png -------------------------------------------------------------------------------- /lib/foundation/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/lib/foundation/slick/ajax-loader.gif -------------------------------------------------------------------------------- /lib/foundation/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/lib/foundation/slick/fonts/slick.eot -------------------------------------------------------------------------------- /lib/foundation/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/lib/foundation/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /lib/foundation/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntithenai/chromescrape/HEAD/lib/foundation/slick/fonts/slick.woff -------------------------------------------------------------------------------- /lib/foundation/slick/config.rb: -------------------------------------------------------------------------------- 1 | css_dir = "." 2 | sass_dir = "." 3 | images_dir = "." 4 | fonts_dir = "fonts" 5 | relative_assets = true 6 | 7 | output_style = :compact 8 | line_comments = false 9 | 10 | preferred_syntax = :scss -------------------------------------------------------------------------------- /assets/images/LICENSE: -------------------------------------------------------------------------------- 1 | icons source: 2 | https://www.iconfinder.com/iconsets/free-grey-cloud-icons#readme 3 | https://www.iconfinder.com/icons/129397/spider_web_icon#size=96 4 | 5 | license: 6 | http://creativecommons.org/licenses/by/3.0/legalcode 7 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "version": "0.1", 4 | "name": "Bank Scraper", 5 | "short_name": "Bank Scraper", 6 | "description": "Tool for data extraction from websites", 7 | "permissions": ["", "tabs", "storage", "unlimitedStorage", "downloads","declarativeContent"], 8 | "icons": { 9 | "16": "assets/images/icon16.png", 10 | "48": "assets/images/icon48.png", 11 | "128": "assets/images/icon128.png" 12 | }, 13 | "web_accessible_resources": [ 14 | "assets/images/icon16.png", 15 | "assets/images/icon48.png", 16 | "assets/images/icon128.png", 17 | "assets/images/icon19.png", 18 | "assets/images/icon38.png" 19 | ], 20 | "browser_action": { 21 | "default_icon": "assets/images/icon16.png", 22 | "default_popup": "popup.html" 23 | }, 24 | "content_scripts": [ 25 | { 26 | "matches": ["*://*/*"], 27 | "js": [ 28 | "content_script.js" 29 | ], 30 | "run_at": "document_end" 31 | } 32 | ], 33 | "background": { 34 | "scripts": ["background_script.js"], 35 | "persistent": false 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /blog.txt: -------------------------------------------------------------------------------- 1 | so I want graphs and AI on my financial data 2 | I want my financial AI to 3 | - know how much I typically spend and how much I typically earn. 4 | - let me know where I am on the financial balance curve 5 | - notify me of any irregularities or problems 6 | - ensure that I review my transactions on a regular basis 7 | 8 | and I DON'T WANT to type in transactions 9 | 10 | there are lots of services that will scrape your bank details for you 11 | IF YOU GIVE THEM YOUR INTERNET BANKING LOGIN 12 | 13 | hmmmmm 14 | 15 | Enter bankscrapechrome. 16 | 17 | A chrome extension that will drive the process of scraping your bank from a currently active browser session. 18 | Seeing as how we're using the current browser, we can login first. 19 | 20 | Not a complete solution to automation (although in most cases login can be scripted too) but sufficient to make it a one input operation to import data from a given bank into your application. 21 | 22 | Using javascript to engage with the DOM of the bank site within a current browser session, the scrape is indistinguishable from a real person clicking through the pages. 23 | -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Scraper 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | SCRAPE 21 | SHOW 22 |

Nothing here {{'yet' + '!'}}

23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- 1 | 2 | console.log('popup loaded'); 3 | document.addEventListener('DOMContentLoaded', function() { 4 | var jobs=[]; 5 | 6 | console.log('content loaded'); 7 | 8 | document.getElementById('storagebutton').onclick=function() { 9 | console.log('click storage'); 10 | chrome.runtime.sendMessage({type:'dump',}, function(response) { 11 | console.log(['sent dump request',response]); 12 | }); 13 | //chrome.storage.local.get(null, function(res) { 14 | //// Notify that we saved. 15 | //console.log('Data loaded',res); 16 | //}); 17 | } 18 | document.getElementById('scrapebutton').onclick=function() { 19 | // add job 20 | console.log('Adding jobs '); 21 | // home 22 | //jobs.push({actions: [['click','#header .brand a']], expect:'#container_header', scrape: ['news','.module-body','.module-body > ol > li']}); 23 | // just in 24 | //jobs.push({actions: [['click','#n-justin a']], expect:'.article-index', scrape: ['newsjustin','.article-index','li']}); 25 | jobs=[]; 26 | jobs.push({actions: [['click','#header .brand a']], expect:'#container_header'}); 27 | jobs.push({actions: [['click','.weather-details-link']], expect:'#weather_details', scrape: ['weather','#weather_details','.forecast li .weather-forecast-description']}); 28 | jobs.push({actions: [['click','#n-justin a']], expect:'.article-index', scrape: ['newsjustin','.article-index','li']}); 29 | console.log(jobs); 30 | 31 | // send to bg script 32 | chrome.runtime.sendMessage({type:'queue', jobs: jobs}, function(response) { 33 | console.log(['popup queued jobs']); 34 | }); 35 | }; 36 | }); 37 | -------------------------------------------------------------------------------- /lib/foundation/slick/slick.less: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | 3 | .slick-slider { 4 | position: relative; 5 | display: block; 6 | box-sizing: border-box; 7 | -webkit-touch-callout: none; 8 | -webkit-user-select: none; 9 | -khtml-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | -ms-touch-action: pan-y; 14 | touch-action: pan-y; 15 | -webkit-tap-highlight-color: transparent; 16 | } 17 | .slick-list { 18 | position: relative; 19 | overflow: hidden; 20 | display: block; 21 | margin: 0; 22 | padding: 0; 23 | 24 | &:focus { 25 | outline: none; 26 | } 27 | 28 | &.dragging { 29 | cursor: pointer; 30 | cursor: hand; 31 | } 32 | } 33 | .slick-slider .slick-track, 34 | .slick-slider .slick-list { 35 | -webkit-transform: translate3d(0, 0, 0); 36 | -moz-transform: translate3d(0, 0, 0); 37 | -ms-transform: translate3d(0, 0, 0); 38 | -o-transform: translate3d(0, 0, 0); 39 | transform: translate3d(0, 0, 0); 40 | } 41 | 42 | .slick-track { 43 | position: relative; 44 | left: 0; 45 | top: 0; 46 | display: block; 47 | 48 | &:before, 49 | &:after { 50 | content: ""; 51 | display: table; 52 | } 53 | 54 | &:after { 55 | clear: both; 56 | } 57 | 58 | .slick-loading & { 59 | visibility: hidden; 60 | } 61 | } 62 | .slick-slide { 63 | float: left; 64 | height: 100%; 65 | min-height: 1px; 66 | [dir="rtl"] & { 67 | float: right; 68 | } 69 | img { 70 | display: block; 71 | } 72 | &.slick-loading img { 73 | display: none; 74 | } 75 | 76 | display: none; 77 | 78 | &.dragging img { 79 | pointer-events: none; 80 | } 81 | 82 | .slick-initialized & { 83 | display: block; 84 | } 85 | 86 | .slick-loading & { 87 | visibility: hidden; 88 | } 89 | 90 | .slick-vertical & { 91 | display: block; 92 | height: auto; 93 | border: 1px solid transparent; 94 | } 95 | } 96 | .slick-arrow.slick-hidden { 97 | display: none; 98 | } 99 | -------------------------------------------------------------------------------- /lib/foundation/slick/slick.scss: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | 3 | .slick-slider { 4 | position: relative; 5 | display: block; 6 | box-sizing: border-box; 7 | -webkit-touch-callout: none; 8 | -webkit-user-select: none; 9 | -khtml-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | -ms-touch-action: pan-y; 14 | touch-action: pan-y; 15 | -webkit-tap-highlight-color: transparent; 16 | } 17 | .slick-list { 18 | position: relative; 19 | overflow: hidden; 20 | display: block; 21 | margin: 0; 22 | padding: 0; 23 | 24 | &:focus { 25 | outline: none; 26 | } 27 | 28 | &.dragging { 29 | cursor: pointer; 30 | cursor: hand; 31 | } 32 | } 33 | .slick-slider .slick-track, 34 | .slick-slider .slick-list { 35 | -webkit-transform: translate3d(0, 0, 0); 36 | -moz-transform: translate3d(0, 0, 0); 37 | -ms-transform: translate3d(0, 0, 0); 38 | -o-transform: translate3d(0, 0, 0); 39 | transform: translate3d(0, 0, 0); 40 | } 41 | 42 | .slick-track { 43 | position: relative; 44 | left: 0; 45 | top: 0; 46 | display: block; 47 | 48 | &:before, 49 | &:after { 50 | content: ""; 51 | display: table; 52 | } 53 | 54 | &:after { 55 | clear: both; 56 | } 57 | 58 | .slick-loading & { 59 | visibility: hidden; 60 | } 61 | } 62 | .slick-slide { 63 | float: left; 64 | height: 100%; 65 | min-height: 1px; 66 | [dir="rtl"] & { 67 | float: right; 68 | } 69 | img { 70 | display: block; 71 | } 72 | &.slick-loading img { 73 | display: none; 74 | } 75 | 76 | display: none; 77 | 78 | &.dragging img { 79 | pointer-events: none; 80 | } 81 | 82 | .slick-initialized & { 83 | display: block; 84 | } 85 | 86 | .slick-loading & { 87 | visibility: hidden; 88 | } 89 | 90 | .slick-vertical & { 91 | display: block; 92 | height: auto; 93 | border: 1px solid transparent; 94 | } 95 | } 96 | .slick-arrow.slick-hidden { 97 | display: none; 98 | } 99 | -------------------------------------------------------------------------------- /lib/foundation/slick/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /lib/foundation/slick/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | box-sizing: border-box; 8 | 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | 14 | -webkit-touch-callout: none; 15 | -khtml-user-select: none; 16 | -ms-touch-action: pan-y; 17 | touch-action: pan-y; 18 | -webkit-tap-highlight-color: transparent; 19 | } 20 | 21 | .slick-list 22 | { 23 | position: relative; 24 | 25 | display: block; 26 | overflow: hidden; 27 | 28 | margin: 0; 29 | padding: 0; 30 | } 31 | .slick-list:focus 32 | { 33 | outline: none; 34 | } 35 | .slick-list.dragging 36 | { 37 | cursor: pointer; 38 | cursor: hand; 39 | } 40 | 41 | .slick-slider .slick-track, 42 | .slick-slider .slick-list 43 | { 44 | -webkit-transform: translate3d(0, 0, 0); 45 | -moz-transform: translate3d(0, 0, 0); 46 | -ms-transform: translate3d(0, 0, 0); 47 | -o-transform: translate3d(0, 0, 0); 48 | transform: translate3d(0, 0, 0); 49 | } 50 | 51 | .slick-track 52 | { 53 | position: relative; 54 | top: 0; 55 | left: 0; 56 | 57 | display: block; 58 | } 59 | .slick-track:before, 60 | .slick-track:after 61 | { 62 | display: table; 63 | 64 | content: ''; 65 | } 66 | .slick-track:after 67 | { 68 | clear: both; 69 | } 70 | .slick-loading .slick-track 71 | { 72 | visibility: hidden; 73 | } 74 | 75 | .slick-slide 76 | { 77 | display: none; 78 | float: left; 79 | 80 | height: 100%; 81 | min-height: 1px; 82 | } 83 | [dir='rtl'] .slick-slide 84 | { 85 | float: right; 86 | } 87 | .slick-slide img 88 | { 89 | display: block; 90 | } 91 | .slick-slide.slick-loading img 92 | { 93 | display: none; 94 | } 95 | .slick-slide.dragging img 96 | { 97 | pointer-events: none; 98 | } 99 | .slick-initialized .slick-slide 100 | { 101 | display: block; 102 | } 103 | .slick-loading .slick-slide 104 | { 105 | visibility: hidden; 106 | } 107 | .slick-vertical .slick-slide 108 | { 109 | display: block; 110 | 111 | height: auto; 112 | 113 | border: 1px solid transparent; 114 | } 115 | .slick-arrow.slick-hidden { 116 | display: none; 117 | } 118 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Chrome Extension - Scraper 2 | 3 | This repository provides an example of web scraping using chrome extension features including background and content scripts. 4 | 5 | A content script is code that can be run in the context of any loaded web page. 6 | It has no script access to the page but full access to the DOM. 7 | Javascript triggers on the DOM can be used to trigger code on the loaded web page. 8 | 9 | A background script is the heart of a chrome extension. It registers and responds to events. A button in the chrome address bar. 10 | 11 | To install the extension, use the the [chrome extension manager](chrome://extensions) to "Load Unpacked Extension". 12 | 13 | At this stage all the action is in the javascript console. The extension manager provides a link to the background page where you can see the JOB COMPLETE log showing the scraped data. 14 | 15 | 16 | 17 | An extension button is enabled for a fixed list of domains. (The extension is currently only enabled for abc.net.au) 18 | Clicking the extension button on an enabled domain triggers a scrape. 19 | A scrape can involve multiple javascript actions contained in multiple jobs. 20 | 21 | Each job can specify an expect selector. Where one is set, the selector must include non whitespace textContent or all jobs are cleared. 22 | 23 | Each job can specify an array of scrape selectors. At the completion of actions for a job, the scrape selectors are used to extract data from the web page and return it to the background process. 24 | 25 | Actions are specified as an array of 2 element arrays. 26 | eg [['click','#header .brand a'],['click','#header .brand b']] 27 | If an action triggers a page load, it must be the last action in the array. 28 | 29 | Some actions run javascript triggers that just enabled DOM rendering updates. 30 | The jobs for these actions can be scraped immediately after after the actions execute. 31 | 32 | Some actions run javascript triggers that cause the page to submit. 33 | The scraping associated with the job must run after the page finishes loading. 34 | When a page load is noticed by the content script (using onbeforeunload event), the background script is notified that a submission is pending. When the page finishes loading, the content script onload asks the background for the job and scrapes and returns data. 35 | 36 | 37 | ## Components 38 | 39 | Background Page - extension main controller 40 | Extension Button - extension UI 41 | Content Script - injected into remote page for scraping 42 | Web App - for viewing scraped data 43 | 44 | ## Communication Channels 45 | 46 | Chrome extensions provide an API to send messages between tabs. 47 | 48 | ``` 49 | // SEND MESSAGE 50 | chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 51 | chrome.tabs.sendMessage(tabs[0].id, {type:'start',job:jobs[0]}, function(response) { 52 | console.log('JOB accepted ',response); 53 | }); 54 | }); 55 | }); 56 | 57 | // REGISTER AS MESSAGE LISTENER 58 | chrome.runtime.onMessage.addListener( 59 | function(request, sender, sendResponse) { 60 | 61 | ``` 62 | 63 | EB --click--> 64 | BG [queue jobs] --start--> CS 65 | 66 | CS BG 67 | --job--> 68 | --scrape--> 69 | --error--> 70 | --submission--> 71 | 72 | 73 | ## ?? 74 | 75 | 76 | 77 | // for conditional button 78 | "page_action" : { 79 | "default_icon" : "assets/images/icon16.png", 80 | "default_title" : "abc website!" 81 | }, 82 | -------------------------------------------------------------------------------- /lib/foundation/slick/slick-theme.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | /* Slider */ 3 | .slick-loading .slick-list 4 | { 5 | background: #fff url('./ajax-loader.gif') center center no-repeat; 6 | } 7 | 8 | /* Icons */ 9 | @font-face 10 | { 11 | font-family: 'slick'; 12 | font-weight: normal; 13 | font-style: normal; 14 | 15 | src: url('./fonts/slick.eot'); 16 | src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg'); 17 | } 18 | /* Arrows */ 19 | .slick-prev, 20 | .slick-next 21 | { 22 | font-size: 0; 23 | line-height: 0; 24 | 25 | position: absolute; 26 | top: 50%; 27 | 28 | display: block; 29 | 30 | width: 20px; 31 | height: 20px; 32 | padding: 0; 33 | -webkit-transform: translate(0, -50%); 34 | -ms-transform: translate(0, -50%); 35 | transform: translate(0, -50%); 36 | 37 | cursor: pointer; 38 | 39 | color: transparent; 40 | border: none; 41 | outline: none; 42 | background: transparent; 43 | } 44 | .slick-prev:hover, 45 | .slick-prev:focus, 46 | .slick-next:hover, 47 | .slick-next:focus 48 | { 49 | color: transparent; 50 | outline: none; 51 | background: transparent; 52 | } 53 | .slick-prev:hover:before, 54 | .slick-prev:focus:before, 55 | .slick-next:hover:before, 56 | .slick-next:focus:before 57 | { 58 | opacity: 1; 59 | } 60 | .slick-prev.slick-disabled:before, 61 | .slick-next.slick-disabled:before 62 | { 63 | opacity: .25; 64 | } 65 | 66 | .slick-prev:before, 67 | .slick-next:before 68 | { 69 | font-family: 'slick'; 70 | font-size: 20px; 71 | line-height: 1; 72 | 73 | opacity: .75; 74 | color: white; 75 | 76 | -webkit-font-smoothing: antialiased; 77 | -moz-osx-font-smoothing: grayscale; 78 | } 79 | 80 | .slick-prev 81 | { 82 | left: -25px; 83 | } 84 | [dir='rtl'] .slick-prev 85 | { 86 | right: -25px; 87 | left: auto; 88 | } 89 | .slick-prev:before 90 | { 91 | content: '←'; 92 | } 93 | [dir='rtl'] .slick-prev:before 94 | { 95 | content: '→'; 96 | } 97 | 98 | .slick-next 99 | { 100 | right: -25px; 101 | } 102 | [dir='rtl'] .slick-next 103 | { 104 | right: auto; 105 | left: -25px; 106 | } 107 | .slick-next:before 108 | { 109 | content: '→'; 110 | } 111 | [dir='rtl'] .slick-next:before 112 | { 113 | content: '←'; 114 | } 115 | 116 | /* Dots */ 117 | .slick-dotted.slick-slider 118 | { 119 | margin-bottom: 30px; 120 | } 121 | 122 | .slick-dots 123 | { 124 | position: absolute; 125 | bottom: -25px; 126 | 127 | display: block; 128 | 129 | width: 100%; 130 | padding: 0; 131 | margin: 0; 132 | 133 | list-style: none; 134 | 135 | text-align: center; 136 | } 137 | .slick-dots li 138 | { 139 | position: relative; 140 | 141 | display: inline-block; 142 | 143 | width: 20px; 144 | height: 20px; 145 | margin: 0 5px; 146 | padding: 0; 147 | 148 | cursor: pointer; 149 | } 150 | .slick-dots li button 151 | { 152 | font-size: 0; 153 | line-height: 0; 154 | 155 | display: block; 156 | 157 | width: 20px; 158 | height: 20px; 159 | padding: 5px; 160 | 161 | cursor: pointer; 162 | 163 | color: transparent; 164 | border: 0; 165 | outline: none; 166 | background: transparent; 167 | } 168 | .slick-dots li button:hover, 169 | .slick-dots li button:focus 170 | { 171 | outline: none; 172 | } 173 | .slick-dots li button:hover:before, 174 | .slick-dots li button:focus:before 175 | { 176 | opacity: 1; 177 | } 178 | .slick-dots li button:before 179 | { 180 | font-family: 'slick'; 181 | font-size: 6px; 182 | line-height: 20px; 183 | 184 | position: absolute; 185 | top: 0; 186 | left: 0; 187 | 188 | width: 20px; 189 | height: 20px; 190 | 191 | content: '•'; 192 | text-align: center; 193 | 194 | opacity: .25; 195 | color: black; 196 | 197 | -webkit-font-smoothing: antialiased; 198 | -moz-osx-font-smoothing: grayscale; 199 | } 200 | .slick-dots li.slick-active button:before 201 | { 202 | opacity: .75; 203 | color: black; 204 | } 205 | -------------------------------------------------------------------------------- /lib/foundation/slick/slick-theme.less: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | // Default Variables 4 | 5 | @slick-font-path: "./fonts/"; 6 | @slick-font-family: "slick"; 7 | @slick-loader-path: "./"; 8 | @slick-arrow-color: white; 9 | @slick-dot-color: black; 10 | @slick-dot-color-active: @slick-dot-color; 11 | @slick-prev-character: "←"; 12 | @slick-next-character: "→"; 13 | @slick-dot-character: "•"; 14 | @slick-dot-size: 6px; 15 | @slick-opacity-default: 0.75; 16 | @slick-opacity-on-hover: 1; 17 | @slick-opacity-not-active: 0.25; 18 | 19 | /* Slider */ 20 | .slick-loading .slick-list{ 21 | background: #fff url('@{slick-loader-path}ajax-loader.gif') center center no-repeat; 22 | } 23 | 24 | /* Icons */ 25 | @font-face{ 26 | font-family: 'slick'; 27 | font-weight: normal; 28 | font-style: normal; 29 | 30 | src: url('@{slick-font-path}slick.eot'); 31 | src: url('@{slick-font-path}slick.eot?#iefix') format('embedded-opentype'), url('@{slick-font-path}slick.woff') format('woff'), url('@{slick-font-path}slick.ttf') format('truetype'), url('@{slick-font-path}slick.svg#slick') format('svg'); 32 | } 33 | 34 | /* Arrows */ 35 | 36 | .slick-prev, 37 | .slick-next { 38 | position: absolute; 39 | display: block; 40 | height: 20px; 41 | width: 20px; 42 | line-height: 0px; 43 | font-size: 0px; 44 | cursor: pointer; 45 | background: transparent; 46 | color: transparent; 47 | top: 50%; 48 | -webkit-transform: translate(0, -50%); 49 | -ms-transform: translate(0, -50%); 50 | transform: translate(0, -50%); 51 | padding: 0; 52 | border: none; 53 | outline: none; 54 | &:hover, &:focus { 55 | outline: none; 56 | background: transparent; 57 | color: transparent; 58 | &:before { 59 | opacity: @slick-opacity-on-hover; 60 | } 61 | } 62 | &.slick-disabled:before { 63 | opacity: @slick-opacity-not-active; 64 | } 65 | } 66 | 67 | .slick-prev:before, .slick-next:before { 68 | font-family: @slick-font-family; 69 | font-size: 20px; 70 | line-height: 1; 71 | color: @slick-arrow-color; 72 | opacity: @slick-opacity-default; 73 | -webkit-font-smoothing: antialiased; 74 | -moz-osx-font-smoothing: grayscale; 75 | } 76 | 77 | .slick-prev { 78 | left: -25px; 79 | &[dir="rtl"] { 80 | left: auto; 81 | right: -25px; 82 | } 83 | &:before { 84 | content: @slick-prev-character; 85 | &[dir="rtl"] { 86 | content: @slick-next-character; 87 | } 88 | } 89 | } 90 | 91 | .slick-next { 92 | right: -25px; 93 | &[dir="rtl"] { 94 | left: -25px; 95 | right: auto; 96 | } 97 | &:before { 98 | content: @slick-next-character; 99 | &[dir="rtl"] { 100 | content: @slick-prev-character; 101 | } 102 | } 103 | } 104 | 105 | /* Dots */ 106 | 107 | .slick-dotted .slick-slider { 108 | margin-bottom: 30px; 109 | } 110 | 111 | .slick-dots { 112 | position: absolute; 113 | bottom: -25px; 114 | list-style: none; 115 | display: block; 116 | text-align: center; 117 | padding: 0; 118 | margin: 0; 119 | width: 100%; 120 | li { 121 | position: relative; 122 | display: inline-block; 123 | height: 20px; 124 | width: 20px; 125 | margin: 0 5px; 126 | padding: 0; 127 | cursor: pointer; 128 | button { 129 | border: 0; 130 | background: transparent; 131 | display: block; 132 | height: 20px; 133 | width: 20px; 134 | outline: none; 135 | line-height: 0px; 136 | font-size: 0px; 137 | color: transparent; 138 | padding: 5px; 139 | cursor: pointer; 140 | &:hover, &:focus { 141 | outline: none; 142 | &:before { 143 | opacity: @slick-opacity-on-hover; 144 | } 145 | } 146 | &:before { 147 | position: absolute; 148 | top: 0; 149 | left: 0; 150 | content: @slick-dot-character; 151 | width: 20px; 152 | height: 20px; 153 | font-family: @slick-font-family; 154 | font-size: @slick-dot-size; 155 | line-height: 20px; 156 | text-align: center; 157 | color: @slick-dot-color; 158 | opacity: @slick-opacity-not-active; 159 | -webkit-font-smoothing: antialiased; 160 | -moz-osx-font-smoothing: grayscale; 161 | } 162 | } 163 | &.slick-active button:before { 164 | color: @slick-dot-color-active; 165 | opacity: @slick-opacity-default; 166 | } 167 | } 168 | } 169 | -------------------------------------------------------------------------------- /background_script.js: -------------------------------------------------------------------------------- 1 | //// EXTENSION BUTTON VISIBILITY 2 | //chrome.runtime.onInstalled.addListener(function() { 3 | //chrome.declarativeContent.onPageChanged.removeRules(undefined, function() { 4 | //chrome.declarativeContent.onPageChanged.addRules([ 5 | //{ 6 | //conditions: [ 7 | //new chrome.declarativeContent.PageStateMatcher({ 8 | //pageUrl: { urlContains: 'abc.net' }, 9 | //}) 10 | //], 11 | //actions: [ 12 | //new chrome.declarativeContent.ShowPageAction(), 13 | //] 14 | //} 15 | //]); 16 | //}); 17 | //}); 18 | 19 | // PERSIST SCRAPE 20 | var accounts=[]; 21 | var transactions=[]; 22 | 23 | function addAccount(name,number) { 24 | accounts[number]=name; 25 | transactions[number]=[]; 26 | } 27 | 28 | 29 | // JOBS 30 | var jobs=[]; 31 | var failed=[]; 32 | 33 | 34 | // EXTENSION BUTTON CLICK 35 | //chrome.pageAction.onClicked.addListener(function(tab) { 36 | //// add job 37 | //console.log('Adding jobs to the url ' + tab.url); 38 | //// home 39 | ////jobs.push({actions: [['click','#header .brand a']], expect:'#container_header', scrape: ['news','.module-body','.module-body > ol > li']}); 40 | //// just in 41 | ////jobs.push({actions: [['click','#n-justin a']], expect:'.article-index', scrape: ['newsjustin','.article-index','li']}); 42 | //jobs.push({actions: [['click','#header .brand a']], expect:'#container_header'}); 43 | //jobs.push({actions: [['click','.weather-details-link']], expect:'#weather_details', scrape: ['weather','#weather_details','.forecast li .weather-forecast-description']}); 44 | //jobs.push({actions: [['click','#n-justin a']], expect:'.article-index', scrape: ['newsjustin','.article-index','li']}); 45 | //console.log(jobs); 46 | 47 | //// enact first job 48 | //// SEND REQUEST TO CONTENT SCRIPT 49 | //chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 50 | ////var message={hash: tabs[0].id,actions: jobs[0].actions, expect: jobs[0].expect, scrape: jobs[0].scrape} 51 | //chrome.tabs.sendMessage(tabs[0].id, {type:'start',job:jobs[0]}, function(response) { 52 | //console.log('JOB accepted ',response); 53 | //}); 54 | //}); 55 | //}); 56 | 57 | 58 | // MAIN BACKGROUND BINDING 59 | chrome.runtime.onMessage.addListener( 60 | function(request, sender, sendResponse) { 61 | console.log(["BG MSG",request, sender, sendResponse]); 62 | // content script actions has triggered submission, store this against the current job 63 | if (request.type=="job") { 64 | console.log(['JOB query ',request]); 65 | sendResponse({job: jobs[0]}); 66 | // capture scraped data, clear job and send start request to for any more jobs 67 | } else if (request.type=="queue") { 68 | //// add job 69 | console.log('Adding jobs'); 70 | if (request.jobs != null && request.jobs.length>0) { 71 | console.log('Have jobs'); 72 | jobs=request.jobs; // append ?? 73 | // enact first job 74 | // SEND REQUEST TO CONTENT SCRIPT 75 | chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 76 | chrome.tabs.sendMessage(tabs[0].id, {type:'start',job:jobs[0]}, function(response) { 77 | console.log('JOBs accepted ',response); 78 | }); 79 | }); 80 | } 81 | } else if (request.type=="submission") { 82 | if (jobs.length>0) { 83 | jobs[0].submitted=true; 84 | console.log(['JOB submitted ',request]); 85 | } 86 | // content script failed expectations 87 | } else if (request.type=="fail") { 88 | console.log(['JOB FAIL ',request]); 89 | // clear the queue 90 | jobs=[]; 91 | // request current job 92 | } else if (request.type=="scrape") { 93 | jobs.shift(); 94 | console.log(['JOB complete',request, sender, sendResponse]); 95 | console.log('SAVING SCRAPE ',request.response) 96 | if (request.response != null) { 97 | console.log('SAVING SCRAPE have response', request.response); 98 | chrome.storage.local.set( request.response, function() { 99 | // Notify that we saved. 100 | console.log('Scrape saved'); 101 | }); 102 | } 103 | if (jobs.length > 0) { 104 | chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { 105 | // var message={hash: tabs[0].id,actions: jobs[0].actions, expect: jobs[0].expect, scrape: jobs[0].scrape} 106 | chrome.tabs.sendMessage(tabs[0].id, {type:'start',job:jobs[0]}, function(response) { 107 | console.log('NEXT JOB accepted ',response); 108 | }); 109 | }); 110 | } 111 | } else if (request.type=="log") { 112 | console.log(['LOG',request]); 113 | } else if (request.type=="dump") { 114 | console.log('DUMP'); 115 | chrome.storage.local.get(null, function(res) { 116 | // Notify that we saved. 117 | console.log('Data loaded',res); 118 | }); 119 | } else { 120 | console.log(['JOB invalid',request, sender, sendResponse]); 121 | } 122 | } 123 | ); 124 | -------------------------------------------------------------------------------- /lib/foundation/slick/slick-theme.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | // Default Variables 4 | 5 | // Slick icon entity codes outputs the following 6 | // "\2190" outputs ascii character "←" 7 | // "\2192" outputs ascii character "→" 8 | // "\2022" outputs ascii character "•" 9 | 10 | $slick-font-path: "./fonts/" !default; 11 | $slick-font-family: "slick" !default; 12 | $slick-loader-path: "./" !default; 13 | $slick-arrow-color: white !default; 14 | $slick-dot-color: black !default; 15 | $slick-dot-color-active: $slick-dot-color !default; 16 | $slick-prev-character: "\2190" !default; 17 | $slick-next-character: "\2192" !default; 18 | $slick-dot-character: "\2022" !default; 19 | $slick-dot-size: 6px !default; 20 | $slick-opacity-default: 0.75 !default; 21 | $slick-opacity-on-hover: 1 !default; 22 | $slick-opacity-not-active: 0.25 !default; 23 | 24 | @function slick-image-url($url) { 25 | @if function-exists(image-url) { 26 | @return image-url($url); 27 | } 28 | @else { 29 | @return url($slick-loader-path + $url); 30 | } 31 | } 32 | 33 | @function slick-font-url($url) { 34 | @if function-exists(font-url) { 35 | @return font-url($url); 36 | } 37 | @else { 38 | @return url($slick-font-path + $url); 39 | } 40 | } 41 | 42 | /* Slider */ 43 | 44 | .slick-list { 45 | .slick-loading & { 46 | background: #fff slick-image-url("ajax-loader.gif") center center no-repeat; 47 | } 48 | } 49 | 50 | /* Icons */ 51 | @if $slick-font-family == "slick" { 52 | @font-face { 53 | font-family: "slick"; 54 | src: slick-font-url("slick.eot"); 55 | src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg"); 56 | font-weight: normal; 57 | font-style: normal; 58 | } 59 | } 60 | 61 | /* Arrows */ 62 | 63 | .slick-prev, 64 | .slick-next { 65 | position: absolute; 66 | display: block; 67 | height: 20px; 68 | width: 20px; 69 | line-height: 0px; 70 | font-size: 0px; 71 | cursor: pointer; 72 | background: transparent; 73 | color: transparent; 74 | top: 50%; 75 | -webkit-transform: translate(0, -50%); 76 | -ms-transform: translate(0, -50%); 77 | transform: translate(0, -50%); 78 | padding: 0; 79 | border: none; 80 | outline: none; 81 | &:hover, &:focus { 82 | outline: none; 83 | background: transparent; 84 | color: transparent; 85 | &:before { 86 | opacity: $slick-opacity-on-hover; 87 | } 88 | } 89 | &.slick-disabled:before { 90 | opacity: $slick-opacity-not-active; 91 | } 92 | &:before { 93 | font-family: $slick-font-family; 94 | font-size: 20px; 95 | line-height: 1; 96 | color: $slick-arrow-color; 97 | opacity: $slick-opacity-default; 98 | -webkit-font-smoothing: antialiased; 99 | -moz-osx-font-smoothing: grayscale; 100 | } 101 | } 102 | 103 | .slick-prev { 104 | left: -25px; 105 | [dir="rtl"] & { 106 | left: auto; 107 | right: -25px; 108 | } 109 | &:before { 110 | content: $slick-prev-character; 111 | [dir="rtl"] & { 112 | content: $slick-next-character; 113 | } 114 | } 115 | } 116 | 117 | .slick-next { 118 | right: -25px; 119 | [dir="rtl"] & { 120 | left: -25px; 121 | right: auto; 122 | } 123 | &:before { 124 | content: $slick-next-character; 125 | [dir="rtl"] & { 126 | content: $slick-prev-character; 127 | } 128 | } 129 | } 130 | 131 | /* Dots */ 132 | 133 | .slick-dotted.slick-slider { 134 | margin-bottom: 30px; 135 | } 136 | 137 | .slick-dots { 138 | position: absolute; 139 | bottom: -25px; 140 | list-style: none; 141 | display: block; 142 | text-align: center; 143 | padding: 0; 144 | margin: 0; 145 | width: 100%; 146 | li { 147 | position: relative; 148 | display: inline-block; 149 | height: 20px; 150 | width: 20px; 151 | margin: 0 5px; 152 | padding: 0; 153 | cursor: pointer; 154 | button { 155 | border: 0; 156 | background: transparent; 157 | display: block; 158 | height: 20px; 159 | width: 20px; 160 | outline: none; 161 | line-height: 0px; 162 | font-size: 0px; 163 | color: transparent; 164 | padding: 5px; 165 | cursor: pointer; 166 | &:hover, &:focus { 167 | outline: none; 168 | &:before { 169 | opacity: $slick-opacity-on-hover; 170 | } 171 | } 172 | &:before { 173 | position: absolute; 174 | top: 0; 175 | left: 0; 176 | content: $slick-dot-character; 177 | width: 20px; 178 | height: 20px; 179 | font-family: $slick-font-family; 180 | font-size: $slick-dot-size; 181 | line-height: 20px; 182 | text-align: center; 183 | color: $slick-dot-color; 184 | opacity: $slick-opacity-not-active; 185 | -webkit-font-smoothing: antialiased; 186 | -moz-osx-font-smoothing: grayscale; 187 | } 188 | } 189 | &.slick-active button:before { 190 | color: $slick-dot-color-active; 191 | opacity: $slick-opacity-default; 192 | } 193 | } 194 | } 195 | -------------------------------------------------------------------------------- /lib/foundation/js/vendor/what-input.js: -------------------------------------------------------------------------------- 1 | window.whatInput = (function() { 2 | 3 | 'use strict'; 4 | 5 | /* 6 | --------------- 7 | variables 8 | --------------- 9 | */ 10 | 11 | // array of actively pressed keys 12 | var activeKeys = []; 13 | 14 | // cache document.body 15 | var body; 16 | 17 | // boolean: true if touch buffer timer is running 18 | var buffer = false; 19 | 20 | // the last used input type 21 | var currentInput = null; 22 | 23 | // `input` types that don't accept text 24 | var nonTypingInputs = [ 25 | 'button', 26 | 'checkbox', 27 | 'file', 28 | 'image', 29 | 'radio', 30 | 'reset', 31 | 'submit' 32 | ]; 33 | 34 | // detect version of mouse wheel event to use 35 | // via https://developer.mozilla.org/en-US/docs/Web/Events/wheel 36 | var mouseWheel = detectWheel(); 37 | 38 | // list of modifier keys commonly used with the mouse and 39 | // can be safely ignored to prevent false keyboard detection 40 | var ignoreMap = [ 41 | 16, // shift 42 | 17, // control 43 | 18, // alt 44 | 91, // Windows key / left Apple cmd 45 | 93 // Windows menu / right Apple cmd 46 | ]; 47 | 48 | // mapping of events to input types 49 | var inputMap = { 50 | 'keydown': 'keyboard', 51 | 'keyup': 'keyboard', 52 | 'mousedown': 'mouse', 53 | 'mousemove': 'mouse', 54 | 'MSPointerDown': 'pointer', 55 | 'MSPointerMove': 'pointer', 56 | 'pointerdown': 'pointer', 57 | 'pointermove': 'pointer', 58 | 'touchstart': 'touch' 59 | }; 60 | 61 | // add correct mouse wheel event mapping to `inputMap` 62 | inputMap[detectWheel()] = 'mouse'; 63 | 64 | // array of all used input types 65 | var inputTypes = []; 66 | 67 | // mapping of key codes to a common name 68 | var keyMap = { 69 | 9: 'tab', 70 | 13: 'enter', 71 | 16: 'shift', 72 | 27: 'esc', 73 | 32: 'space', 74 | 37: 'left', 75 | 38: 'up', 76 | 39: 'right', 77 | 40: 'down' 78 | }; 79 | 80 | // map of IE 10 pointer events 81 | var pointerMap = { 82 | 2: 'touch', 83 | 3: 'touch', // treat pen like touch 84 | 4: 'mouse' 85 | }; 86 | 87 | // touch buffer timer 88 | var timer; 89 | 90 | 91 | /* 92 | --------------- 93 | functions 94 | --------------- 95 | */ 96 | 97 | // allows events that are also triggered to be filtered out for `touchstart` 98 | function eventBuffer() { 99 | clearTimer(); 100 | setInput(event); 101 | 102 | buffer = true; 103 | timer = window.setTimeout(function() { 104 | buffer = false; 105 | }, 650); 106 | } 107 | 108 | function bufferedEvent(event) { 109 | if (!buffer) setInput(event); 110 | } 111 | 112 | function unBufferedEvent(event) { 113 | clearTimer(); 114 | setInput(event); 115 | } 116 | 117 | function clearTimer() { 118 | window.clearTimeout(timer); 119 | } 120 | 121 | function setInput(event) { 122 | var eventKey = key(event); 123 | var value = inputMap[event.type]; 124 | if (value === 'pointer') value = pointerType(event); 125 | 126 | // don't do anything if the value matches the input type already set 127 | if (currentInput !== value) { 128 | var eventTarget = target(event); 129 | var eventTargetNode = eventTarget.nodeName.toLowerCase(); 130 | var eventTargetType = (eventTargetNode === 'input') ? eventTarget.getAttribute('type') : null; 131 | 132 | if ( 133 | (// only if the user flag to allow typing in form fields isn't set 134 | !body.hasAttribute('data-whatinput-formtyping') && 135 | 136 | // only if currentInput has a value 137 | currentInput && 138 | 139 | // only if the input is `keyboard` 140 | value === 'keyboard' && 141 | 142 | // not if the key is `TAB` 143 | keyMap[eventKey] !== 'tab' && 144 | 145 | // only if the target is a form input that accepts text 146 | ( 147 | eventTargetNode === 'textarea' || 148 | eventTargetNode === 'select' || 149 | (eventTargetNode === 'input' && nonTypingInputs.indexOf(eventTargetType) < 0) 150 | )) || ( 151 | // ignore modifier keys 152 | ignoreMap.indexOf(eventKey) > -1 153 | ) 154 | ) { 155 | // ignore keyboard typing 156 | } else { 157 | switchInput(value); 158 | } 159 | } 160 | 161 | if (value === 'keyboard') logKeys(eventKey); 162 | } 163 | 164 | function switchInput(string) { 165 | currentInput = string; 166 | body.setAttribute('data-whatinput', currentInput); 167 | 168 | if (inputTypes.indexOf(currentInput) === -1) inputTypes.push(currentInput); 169 | } 170 | 171 | function key(event) { 172 | return (event.keyCode) ? event.keyCode : event.which; 173 | } 174 | 175 | function target(event) { 176 | return event.target || event.srcElement; 177 | } 178 | 179 | function pointerType(event) { 180 | if (typeof event.pointerType === 'number') { 181 | return pointerMap[event.pointerType]; 182 | } else { 183 | return (event.pointerType === 'pen') ? 'touch' : event.pointerType; // treat pen like touch 184 | } 185 | } 186 | 187 | // keyboard logging 188 | function logKeys(eventKey) { 189 | if (activeKeys.indexOf(keyMap[eventKey]) === -1 && keyMap[eventKey]) activeKeys.push(keyMap[eventKey]); 190 | } 191 | 192 | function unLogKeys(event) { 193 | var eventKey = key(event); 194 | var arrayPos = activeKeys.indexOf(keyMap[eventKey]); 195 | 196 | if (arrayPos !== -1) activeKeys.splice(arrayPos, 1); 197 | } 198 | 199 | function bindEvents() { 200 | body = document.body; 201 | 202 | // pointer events (mouse, pen, touch) 203 | if (window.PointerEvent) { 204 | body.addEventListener('pointerdown', bufferedEvent); 205 | body.addEventListener('pointermove', bufferedEvent); 206 | } else if (window.MSPointerEvent) { 207 | body.addEventListener('MSPointerDown', bufferedEvent); 208 | body.addEventListener('MSPointerMove', bufferedEvent); 209 | } else { 210 | 211 | // mouse events 212 | body.addEventListener('mousedown', bufferedEvent); 213 | body.addEventListener('mousemove', bufferedEvent); 214 | 215 | // touch events 216 | if ('ontouchstart' in window) { 217 | body.addEventListener('touchstart', eventBuffer); 218 | } 219 | } 220 | 221 | // mouse wheel 222 | body.addEventListener(mouseWheel, bufferedEvent); 223 | 224 | // keyboard events 225 | body.addEventListener('keydown', unBufferedEvent); 226 | body.addEventListener('keyup', unBufferedEvent); 227 | document.addEventListener('keyup', unLogKeys); 228 | } 229 | 230 | 231 | /* 232 | --------------- 233 | utilities 234 | --------------- 235 | */ 236 | 237 | // detect version of mouse wheel event to use 238 | // via https://developer.mozilla.org/en-US/docs/Web/Events/wheel 239 | function detectWheel() { 240 | return mouseWheel = 'onwheel' in document.createElement('div') ? 241 | 'wheel' : // Modern browsers support "wheel" 242 | 243 | document.onmousewheel !== undefined ? 244 | 'mousewheel' : // Webkit and IE support at least "mousewheel" 245 | 'DOMMouseScroll'; // let's assume that remaining browsers are older Firefox 246 | } 247 | 248 | 249 | /* 250 | --------------- 251 | init 252 | 253 | don't start script unless browser cuts the mustard, 254 | also passes if polyfills are used 255 | --------------- 256 | */ 257 | 258 | if ( 259 | 'addEventListener' in window && 260 | Array.prototype.indexOf 261 | ) { 262 | 263 | // if the dom is already ready already (script was placed at bottom of ) 264 | if (document.body) { 265 | bindEvents(); 266 | 267 | // otherwise wait for the dom to load (script was placed in the ) 268 | } else { 269 | document.addEventListener('DOMContentLoaded', bindEvents); 270 | } 271 | } 272 | 273 | 274 | /* 275 | --------------- 276 | api 277 | --------------- 278 | */ 279 | 280 | return { 281 | 282 | // returns string: the current input type 283 | ask: function() { return currentInput; }, 284 | 285 | // returns array: currently pressed keys 286 | keys: function() { return activeKeys; }, 287 | 288 | // returns array: all the detected input types 289 | types: function() { return inputTypes; }, 290 | 291 | // accepts string: manually set the input type 292 | set: switchInput 293 | }; 294 | 295 | }()); 296 | -------------------------------------------------------------------------------- /content_script.js: -------------------------------------------------------------------------------- 1 | var jobs=[] 2 | 3 | 4 | function scrape(job) { 5 | console.log(['SCRAPE',job]); 6 | var sent=false; 7 | if (job.scrape && job.scrape.length==3) { 8 | console.log(['SCRAPE have params']); 9 | var parent=document.querySelector(job.scrape[1]); 10 | if (parent!=null) { 11 | console.log(['SCRAPE have parent',parent]); 12 | console.log(['SCRAPE search parent for kids matching ',job.scrape[2]]); 13 | var children=parent.querySelectorAll(job.scrape[2]); 14 | var childValues=[]; 15 | for (var i=0; i < children.length; i++) { 16 | childValues.push(children[i].innerHTML); 17 | } 18 | var myResponse = {}; 19 | myResponse[job.scrape[0]]=childValues; 20 | console.log(['CS sending back scrape results',childValues]); 21 | var sent=true; 22 | chrome.runtime.sendMessage({type:'scrape', response: myResponse}, function(response) { 23 | console.log(['CS sent back scrape results']); 24 | }); 25 | } 26 | } 27 | if (!sent) { 28 | chrome.runtime.sendMessage({type:'scrape', response: null}, function(response) { 29 | console.log(['CS sent back scrape results']); 30 | }); 31 | } 32 | } 33 | 34 | function scrapeAndNext(request) { 35 | console.log('SCRAPE AND NEXT',request); 36 | if (request.job !=null && request.job.expect != null) { 37 | console.log(['SCRAPE AND NEXT have expect']); 38 | var expect=document.querySelector(request.job.expect); 39 | console.log('expect',expect); 40 | if (expect != null && expect.textContent != null && expect.textContent.length>0) { 41 | console.log('SCRAPE AND NEXT expect has content ',expect.textContent); 42 | scrape(request.job); 43 | } else { 44 | console.log('SCRAPE AND NEXT fail expect'); 45 | // FAIL expectation 46 | chrome.runtime.sendMessage({type:'fail', response: 'Failed to meet expectation'}, function(response) { 47 | console.log(['CS sent back fail']); 48 | }); 49 | } 50 | } else { 51 | console.log('SCRAPE AND NEXT no expect now scrape '); 52 | scrape(request.job); 53 | } 54 | } 55 | 56 | function runActionsForJob(job) { 57 | console.log('HANDLE JOB ',job); 58 | if (job.actions != null) { 59 | // catch submission resulting from actions and notify the bg page 60 | var submit = function(event) { 61 | chrome.runtime.sendMessage({type:'submission'}, function(response) { 62 | console.log(['CS sent back submission']); 63 | }); 64 | } 65 | window.addEventListener('beforeunload', submit); 66 | console.log('SCRIPT EXEC ',job.actions); 67 | for (var i=0; i < job.actions.length; i++) { 68 | // handle actions - click 69 | // TODO - fillField, selectValue, check, submits 70 | if (job.actions[i][0]=='click') { 71 | console.log('click '+job.actions[i][1]); 72 | if (document.querySelector(job.actions[i][1]) != null) { 73 | document.querySelector(job.actions[i][1]).click(); 74 | } 75 | } 76 | } 77 | window.removeEventListener('beforeunload',submit); 78 | } 79 | 80 | } 81 | 82 | // ONMESSAGE 83 | // content script accepts start messages 84 | // a job parameter is passed with the request 85 | // RUN the action steps associated with the job 86 | // if the job.nosubmit=true, scrape and send back the results (including error if job.expect fails) 87 | chrome.runtime.onMessage.addListener( 88 | function(request, sender, sendResponse) { 89 | try { 90 | console.log('SCRIPT ',request, sender, sendResponse); 91 | if (request.type="start" && request.job !=null) { 92 | runActionsForJob(request.job); 93 | // query for current job and check if it has already been posted 94 | chrome.runtime.sendMessage({type: 'job'}, function(response) { 95 | console.log(['GOT BACK JOB after actions',response]); 96 | if (response !=null && response.job != null) { 97 | // if not posted, scrape and send now 98 | if (!response.job.submitted) { 99 | scrapeAndNext(response); 100 | } 101 | } 102 | }); 103 | } 104 | } catch (e) { 105 | console.log(e); 106 | } 107 | } 108 | ); 109 | 110 | 111 | // ONLOAD 112 | // check for jobs when page loads 113 | // if there is a current job, scrape for it and return the results (or error if job.expect fails) 114 | chrome.runtime.sendMessage({type: 'job'}, function(response) { 115 | try { 116 | if (response !=null && response.job != null) { 117 | console.log(['GOT BACK JOB',response]); 118 | scrapeAndNext(response); 119 | } else { 120 | console.log(['NO JOB AVAILABLE',response]); 121 | 122 | } 123 | } catch (e) { 124 | console.log(e); 125 | } 126 | }); 127 | 128 | 129 | 130 | //alert(window.location.hostname); 131 | /* 132 | if (window.location.hostname.includes('anz.com')) { 133 | // wait for page to finish load and render (angular) 134 | setTimeout(function() { 135 | console.log('timeout'); 136 | // switch on page header 137 | var accountsHeader=document.getElementById('Youraccounts'); 138 | var accountDetailsHeader=document.getElementById('Accountoverview'); 139 | //console.log(['aa',accountsHeader,accountDetailsHeader]); 140 | // ACCOUNTS LIST 141 | if (accountsHeader && accountsHeader.textContent.length>0) { 142 | var accounts=document.getElementById('normalLayout').querySelectorAll('.listViewAccountWrapperYourAccounts'); 143 | var scraped=[]; 144 | for (var a = 0; a < accounts.length; a++) { 145 | //console.log('----------------------------------------'); 146 | //console.log(accounts[a].innerHTML); 147 | scraped.push({ 148 | 'name':accounts[a].querySelector('.accountNameSection')? accounts[a].querySelector('.accountNameSection').textContent.trim() : '', 149 | 'number':accounts[a].querySelector('.accountNoSection') ? accounts[a].querySelector('.accountNoSection').textContent.trim() : '', 150 | 'balance':accounts[a].querySelector('.currentBalTD') ? accounts[a].querySelector('.currentBalTD').textContent.trim() : '' 151 | }); 152 | } 153 | //console.log(scraped); 154 | chrome.runtime.sendMessage({scraped: scraped}, function(response) { 155 | console.log(['BG RESP',response]); 156 | }); 157 | // TRANSACTIONS LIST 158 | } else if (accountDetailsHeader && accountDetailsHeader.textContent.length>0) { 159 | // switch on normal account vs credit card 160 | var transactionBlock=''; 161 | if (document.getElementById('content-txn-hist-id') != null) { 162 | transactionBlock=document.getElementById('content-txn-hist-id'); 163 | } else { 164 | console.log(['FF',document.getElementById('mainContent')]); 165 | console.log(['FF',document.getElementById('mainContent').parentNode]); 166 | console.log(['FF',document.getElementById('mainContent').parentNode.querySelector('.tabsContainerCC')]); 167 | //var transactionBlock=document.getElementById('mainContent').querySelectorAll('.tabsContainerCC')[0]; 168 | transactionBlock=document.getElementById('mainContent').parentNode.querySelector('.tabsContainerCC'); 169 | } 170 | //console.log(transactionBlock); 171 | if (transactionBlock) { 172 | var txn=transactionBlock.querySelectorAll('.displayTable'); 173 | 174 | var scraped=[]; 175 | for (var i = 0, len = txn.length; i < len; i++) { 176 | scraped.push({ 177 | 'date':txn[i].querySelector('.dateNMonthSection') ? txn[i].querySelector('.dateNMonthSection').textContent.trim() : '', 178 | // cc vs normal account 179 | 'description':txn[i].querySelector('.tran-desc-div-stmts') ? txn[i].querySelector('.tran-desc-div-stmts').textContent.trim() : (txn[i].querySelector('.tran-desc-div') ? txn[i].querySelector('.tran-desc-div').textContent.trim() : ''), 180 | 'amount':txn[i].querySelector('.tran-amount-div') ? txn[i].querySelector('.tran-amount-div').textContent.trim() : '', 181 | 'balance': txn[i].querySelector('.tran-balance-div') ? txn[i].querySelector('.tran-balance-div').textContent.trim() : '' 182 | }); 183 | } 184 | //console.log(scraped); 185 | chrome.runtime.sendMessage({scraped: scraped}, function(response) { 186 | console.log(['BG RESP',response]); 187 | }); 188 | // OTHER 189 | } else { 190 | console.log('other'); 191 | } 192 | } 193 | },15000); 194 | //[0].querySelector('.accountNavLink').click(); 195 | //setTimeout(function() { 196 | //scraped=[]; 197 | 198 | //},10000); 199 | 200 | 201 | 202 | 203 | 204 | // alert('anz'); 205 | // wait for page load 206 | 207 | //document.addEventListener('onload', function () { 208 | //alert('anz after wait'); 209 | //document.getElementById('crn').value='sdfasdf'; 210 | //}); 211 | 212 | //setTimeout(function() { 213 | //alert('anz after wait'); 214 | //// trigger content ?? 215 | //document.getElementById('crn').value=''; 216 | //console.log([document.getElementById('Password'), document.getElementById('crn')]); 217 | //if (document.getElementById('Password') != null && document.getElementById('crn')!=null) { 218 | //document.getElementById('crn').value='266783351'; 219 | //document.getElementById('Password').value='thuiespasdfasdf'; 220 | //} 221 | //},15000); 222 | ////var pw=prompt('Password?'); 223 | //.value=pw; 224 | // 225 | //document.getElementById('SignonButton').click(); 226 | 227 | } 228 | */ 229 | /* 230 | window.location='https://www.anz.com/INETBANK/login.asp'; 231 | setTimeout(function() { 232 | 233 | setTimeout(function() { 234 | 235 | },15000); 236 | },10000); 237 | 238 | * */ 239 | 240 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /lib/foundation/slick/slick.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | _ _ _ _ 3 | ___| (_) ___| | __ (_)___ 4 | / __| | |/ __| |/ / | / __| 5 | \__ \ | | (__| < _ | \__ \ 6 | |___/_|_|\___|_|\_(_)/ |___/ 7 | |__/ 8 | 9 | Version: 1.6.0 10 | Author: Ken Wheeler 11 | Website: http://kenwheeler.github.io 12 | Docs: http://kenwheeler.github.io/slick 13 | Repo: http://github.com/kenwheeler/slick 14 | Issues: http://github.com/kenwheeler/slick/issues 15 | 16 | */ 17 | !function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){"use strict";var b=window.Slick||{};b=function(){function c(c,d){var f,e=this;e.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:a(c),appendDots:a(c),arrows:!0,asNavFor:null,prevArrow:'',nextArrow:'',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(b,c){return a('