mirror of
https://github.com/SoPat712/videospeed.git
synced 2026-04-21 04:42:35 -04:00
6 lines
180 B
JavaScript
6 lines
180 B
JavaScript
chrome.runtime.onMessage.addListener(function (request) {
|
|
if (request.action === "openOptions") {
|
|
chrome.tabs.create({ url: chrome.runtime.getURL("options.html") });
|
|
}
|
|
});
|