mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-21 18:08:46 -04:00

The messaging APIs in `extension` module are deprecated in favor of the equivalent APIs in the `runtime` module. Sources: https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/extension https://developer.chrome.com/extensions/extension#methods
14 lines
495 B
JavaScript
14 lines
495 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/igrigorik/videospeed");
|
|
});
|
|
|
|
document.querySelector('#feedback').addEventListener('click', function() {
|
|
window.open("https://github.com/igrigorik/videospeed/issues");
|
|
});
|
|
});
|