Files
videospeed/popup.js
2017-04-20 23:23:16 +03:00

14 lines
501 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
document.querySelector('#config').addEventListener('click', function() {
window.open(chrome.extension.getURL("options.html"));
});
document.querySelector('#about').addEventListener('click', function() {
window.open("https://github.com/codebicycle/videospeed");
});
document.querySelector('#feedback').addEventListener('click', function() {
window.open("https://github.com/codebicycle/videospeed/issues");
});
});