mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-21 18:08:46 -04:00
add popup page
This commit is contained in:
13
popup.js
Normal file
13
popup.js
Normal file
@@ -0,0 +1,13 @@
|
||||
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/igrigorik/videospeed");
|
||||
});
|
||||
|
||||
document.querySelector('#feedback').addEventListener('click', function() {
|
||||
window.open("https://github.com/igrigorik/videospeed/issues");
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user