2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Firefoxアドオンでアイドル検知

Posted at

Firefoxアドオンでマウスイベントを取得して、5秒アイドル時間があればブラウザを閉じる。

index.js
var system = require("sdk/system");
var { setTimeout, clearTimeout } = require('sdk/timers');

var tabs = require("sdk/tabs");
var pageMod = require("sdk/page-mod");
var data = require("sdk/self").data;
var to;

to = sto();
function sto(){
	return setTimeout(function(){
		system.exit();
	}, 5000);
}

tabs.on('ready',function(tab){
	detect_event(tab);
});

tabs.on('activate', function(tab) {
	detect_event(tab);
});

function detect_event(tab){
	worker = tab.attach({
		contentScriptFile: data.url("content-script.js")
	});
	worker.port.on("event",function(msg){
		console.log(msg);
		clearTimeout(to);
		to = sto();
	});
}
content-script.js
//クリックイベントを取得し、アドオン側に通知
window.onclick = function() { 
	self.port.emit("event","click");
}
//ホイールイベントを取得し、アドオン側に通知
document.addEventListener("wheel",function(e){
	self.port.emit("event","wheel");
})
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?