You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The extensions framework is mostly universal now, so with minimal changes this same addon should work for firefox.
All I had todo to get it work locally is the following
Change references to chrome-extension referenced pages to just use absolute urls chrome-extension://${chrome.runtime.id}/options.html => /options.html
add in manifest v2 keys "action": copied keys into => "browser_action":
The extensions framework is mostly universal now, so with minimal changes this same addon should work for firefox.
All I had todo to get it work locally is the following
Change references to chrome-extension referenced pages to just use absolute urls
chrome-extension://${chrome.runtime.id}/options.html
=>/options.html
add in manifest v2 keys
"action":
copied keys into =>"browser_action":
"service_worker": "background.js"
=>"scripts": ["background.js"]
"options_page": "options.html",
=>Also added in a addon-id locally so that storage would work. Otherwise no changes in javascript was required.
The text was updated successfully, but these errors were encountered: