mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
"use strict";
|
|
|
|
extensions.registerSchemaAPI("idle", (extension, context) => {
|
|
return {
|
|
idle: {
|
|
queryState: function(detectionIntervalInSeconds) {
|
|
return Promise.resolve("active");
|
|
},
|
|
},
|
|
};
|
|
});
|