@vacantthinker/firefox-addon-framework-easy 2026.526.1620 → 2026.526.1648

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.0526.1620",
3
+ "version": "2026.0526.1648",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -7,7 +7,7 @@ import {
7
7
  import {browserNotificationCreate} from './browserNotification.js';
8
8
 
9
9
  /**
10
- * will get => {{x, y, width, height, uniqueSelector}}
10
+ * will get => {rectData, uniqueSelector,}
11
11
  * @param message{{
12
12
  * tabId:number,
13
13
  * act:string
@@ -117,7 +117,7 @@ export async function serviceElementPicker(message) {
117
117
  let messageTakeScreenshot = Object.assign(
118
118
  {}, // Start with a fresh, empty object
119
119
  message, // Put the original message first so it doesn't overwrite your new data
120
- rectData,
120
+ {rectData},
121
121
  {
122
122
  // The guaranteed unique CSS path (e.g., "div#wrap > ul > li:nth-of-type(2)")
123
123
  uniqueSelector: getUniqueSelector(target),