I use this: ```ts import iconUrl from "url:/assets/icon.png" chrome.notifications.create({ type: "basic", iconUrl: iconUrl, title: `Title`, message: `Message` }) ``` but is possible somethin like this? or there is a better/clean way? ```ts chrome.notifications.create({ type: "basic", iconUrl: "/assets/icon.png", title: `Title`, message: `Message` }) ``` Thank you