Fix issue #152: no need to use getURL

This commit is contained in:
Will Bamberg
2016-12-07 15:21:16 -10:00
parent 8638cd7698
commit e66fd6ced9

View File

@@ -4,7 +4,7 @@ Open a new tab, and load "my-page.html" into it.
function openMyPage() {
console.log("injecting");
browser.tabs.create({
"url": chrome.extension.getURL("my-page.html")
"url": "my-page.html"
});
}