(function () {
if (typeof chrome.tabs !== 'undefined') {
chrome.tabs.query({active:true, currentWindow:true}, function(tab) {
Tab = tab[0];
$http.get('https://api.ipify.org').then(function(ip) {
currentUserIP = ip.data;
});
});
}
else {
Tab = [{ url: ''}];
}
})();
- Intro: why/idea, how/technology
- the process - challenges and wins
challenges:
1. defining a process for working on something you have not done before? Learning by need, design of backend/frontend, a VERY agile process
2. Understanding documentation and tutorials, not just 'following it' (applies to both backend/frontend)
3. testing chrome extensions, chrome tabs for example
wins:
- what can we improve