aboutsummaryrefslogtreecommitdiffstats
path: root/main.js
blob: 204717efe3ce76a00f3fa334e32c29be88320abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(function() {
	[
		'lib/mousetrap/tests/libs/key-event.js',
		'peniquitous.js'
	].forEach(function(file) {
		var s = document.createElement('script');
		s.src = chrome.extension.getURL(file);
		s.onload = function() {
			this.parentNode.removeChild(this);
		};
		document.documentElement.appendChild(s);
	});
})();