@vacantthinker/firefox-addon-framework-easy 2026.605.958 → 2026.605.1024

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/README.md CHANGED
@@ -67,10 +67,6 @@ export function browserRuntimeOnMessageCommon(
67
67
  sendResponse
68
68
  ) { }
69
69
 
70
- export function browserRuntimeOnMessageMerge(
71
- message, sender
72
- ) { }
73
-
74
70
  ```
75
71
 
76
72
  ### 📄 File: `src/browserTab.js`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vacantthinker/firefox-addon-framework-easy",
3
- "version": "2026.0605.0958",
3
+ "version": "2026.0605.1024",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -44,28 +44,3 @@ export function browserRuntimeOnMessageCommon(
44
44
  }
45
45
 
46
46
  }
47
-
48
- /**
49
- *
50
- * @param message
51
- * @param sender
52
- * @returns {
53
- * |'actLog'
54
- * |'actRequestTabIdTabUrl'
55
- * |'actNotification'
56
- * |'actRemoveTab'
57
- * |'actDownloadFile'
58
- * |'actSendMessageToTab'
59
- * }
60
- */
61
- export function browserRuntimeOnMessageMerge(
62
- message, sender
63
- ) {
64
- let keyAct = 'act';
65
- let act = message[keyAct];
66
- delete message[keyAct];
67
- message['tabId'] = sender.tab?.id;
68
- message['tabUrl'] = sender.tab?.url;
69
-
70
- return act;
71
- }