I am currently developing a browser extension project using AngularJS.
Within the background.js file (which contains the code that runs in the background), I have created a module with a run block.
var myExtensionModule = angular.module('myExtensionModule', []);
myExtensionModule.run(function() {
console.log("Greetings, World!");
});
In the past, I would start a module by placing ng-app on an HTML tag. However, in this case, there is no HTML page. How can I initiate the module?