mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 06:48:37 +02:00
5 lines
103 B
JavaScript
5 lines
103 B
JavaScript
/* exported getUsefulContents */
|
|
function getUsefulContents(callback) {
|
|
callback('Hello World');
|
|
}
|