@vacantthinker/firefox-addon-framework-easy 2026.525.2018 → 2026.526.908

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
@@ -45,6 +45,8 @@ export async function browserRuntimePlatformInfo() { }
45
45
 
46
46
  export function browserRuntimeManifestVersion() { }
47
47
 
48
+ export function browserRuntimeManifestName() { }
49
+
48
50
  ```
49
51
 
50
52
  ### 📄 File: `src/generate.js`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vacantthinker/firefox-addon-framework-easy",
3
- "version": "2026.0525.2018",
3
+ "version": "2026.0526.0908",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -56,6 +56,18 @@ export async function browserRuntimePlatformInfo() {
56
56
  return await browser.runtime.getPlatformInfo();
57
57
  }
58
58
 
59
+ /**
60
+ * browser.runtime.getManifest().version;
61
+ * @returns {string}
62
+ */
59
63
  export function browserRuntimeManifestVersion() {
60
64
  return browser.runtime.getManifest().version;
61
- }
65
+ }
66
+
67
+ /**
68
+ * browser.runtime.getManifest().name;
69
+ * @returns {string}
70
+ */
71
+ export function browserRuntimeManifestName() {
72
+ return browser.runtime.getManifest().name;
73
+ }
@@ -9,9 +9,11 @@ import {stoOpGet, stoOpSet} from './opStorage.js';
9
9
  * selected: ['Searcher1', 'Searcher2'],
10
10
  * },
11
11
  * videoQuality: {
12
+ * optionType: 'radio',
12
13
  * options: ['360', '480', '720', '1080', '1440', '2160'],
13
14
  * selected: '720',
14
15
  * },
16
+ *
15
17
  *
16
18
  * @param userSettings{{}}
17
19
  * @returns {Promise<void>}