mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
extensions.registerPrivilegedAPI("idle", (extension, context) => {
|
|
return {
|
|
idle: {
|
|
queryState: function(detectionIntervalInSeconds, callback) {
|
|
runSafe(context, callback, "active");
|
|
},
|
|
},
|
|
};
|
|
});
|