@vacantthinker/firefox-addon-framework-easy 2026.609.706 → 2026.609.1038

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vacantthinker/firefox-addon-framework-easy",
3
- "version": "2026.0609.0706",
3
+ "version": "2026.0609.1038",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -30,7 +30,7 @@ export function browserRuntimeOnUpdateAvailable(doWhat = null) {
30
30
  * @returns {string}
31
31
  */
32
32
  export function browserRuntimeGetURL(path) {
33
- return browser.runtime.getURL(path)
33
+ return browser.runtime.getURL(path);
34
34
  }
35
35
 
36
36
  /**
package/src/opTab.js CHANGED
@@ -114,7 +114,7 @@ export async function tabOpQueryUrlThenRemove(urlQuery) {
114
114
  * @returns {Promise<void>}
115
115
  */
116
116
  export async function tabOpReload(tabId) {
117
- await browser.tabs.reload(tabId, {bypassCache: true});
117
+ await browser.tabs.reload(tabId);
118
118
  }
119
119
 
120
120
  /**