@enjin/ionic1
Version:
A comprehensive build system for Ionic 1 apps by Madness Labs as part of the Madness Enjin
17 lines (13 loc) • 433 B
text/typescript
/// <reference path="../typings/index.d.ts"/>
declare var chrome;
module <%= app %> {
'use strict';
class ExtensionBackgroundService {
constructor() {
// ON LOAD
// This file runs in the background as long as the user has chrome open (usually always open)
// DOCS: https://developer.chrome.com/extensions/event_pages
}
}
new ExtensionBackgroundService;
}