-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpopup.js
More file actions
executable file
·17 lines (14 loc) · 802 Bytes
/
popup.js
File metadata and controls
executable file
·17 lines (14 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
document.addEventListener("DOMContentLoaded", function () {
document.querySelector("#support").addEventListener("click", function () {
window.open("https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=JEAWYHFCZ8LT4&source=url")
})
document.querySelector("#rate").addEventListener("click", function () {
window.open("https://chrome.google.com/webstore/detail/pohakmokiogdbhiocmacgalcmnfdbbne")
})
document.querySelector("#about").addEventListener("click", function () {
window.open("https://github.com/MathiasGilson/MusicControllerChromeExtension")
})
document.querySelector("#feedback").addEventListener("click", function () {
window.open("https://github.com/MathiasGilson/MusicControllerChromeExtension/issues")
})
})