mirror of
https://github.com/SoPat712/Speeder.git
synced 2026-08-20 12:06:19 -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") });
|
|
}
|
|
});
|