mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-22 02:18:45 -04:00
14 lines
499 B
JavaScript
14 lines
499 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
document.querySelector('#config').addEventListener('click', function() {
|
|
window.open(chrome.runtime.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");
|
|
});
|
|
});
|