Forgot to re-add frames checking support.

This commit is contained in:
Ad5001 2023-11-08 17:24:21 +01:00
parent d470131bde
commit 683749748b
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
2 changed files with 3 additions and 2 deletions

View file

@ -3,7 +3,7 @@
"description": "Simple extension letting you uncheck all checkboxes on a page.", "description": "Simple extension letting you uncheck all checkboxes on a page.",
"manifest_version": 3, "manifest_version": 3,
"name": "unchecker", "name": "unchecker",
"version": "1.2.1", "version": "1.2.2",
"author": "Ad5001", "author": "Ad5001",
"developer": { "developer": {
"name": "Ad5001", "name": "Ad5001",

View file

@ -37,7 +37,8 @@ function toggleScript(tab) {
browser.scripting.executeScript({ browser.scripting.executeScript({
func: uncheckAll, func: uncheckAll,
target: { target: {
tabId: tab.id tabId: tab.id,
allFrames: true
} }
}) })
if(browser.menus) if(browser.menus)