mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
// This special eslint comment will declare that the named
|
|
// function has been "exported" into the global scope.
|
|
|
|
/* exported getUsefulContents */
|
|
function getUsefulContents(callback) {
|
|
callback('Hello World');
|
|
}
|