@vacantthinker/firefox-addon-framework-easy 2026.628.1024 → 2026.628.1027
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/dist/ContentJs.js +2 -2
- package/package.json +1 -1
package/dist/ContentJs.js
CHANGED
|
@@ -217,9 +217,9 @@ export function ctJsHideElements(selectors) {
|
|
|
217
217
|
* maintain runtime context.
|
|
218
218
|
*/
|
|
219
219
|
export function ctJskeepAlive(tag = "") {
|
|
220
|
-
|
|
220
|
+
setInterval(() => {
|
|
221
221
|
browserRuntimeSendMessage({ act: "actMarco" }).then();
|
|
222
|
-
},
|
|
222
|
+
}, 2000);
|
|
223
223
|
}
|
|
224
224
|
export async function ctJsCloseTab() {
|
|
225
225
|
await browserRuntimeSendMessage({
|