Forgot to re-add frames checking support.
This commit is contained in:
parent
d470131bde
commit
683749748b
2 changed files with 3 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
"description": "Simple extension letting you uncheck all checkboxes on a page.",
|
||||
"manifest_version": 3,
|
||||
"name": "unchecker",
|
||||
"version": "1.2.1",
|
||||
"version": "1.2.2",
|
||||
"author": "Ad5001",
|
||||
"developer": {
|
||||
"name": "Ad5001",
|
||||
|
|
|
@ -37,7 +37,8 @@ function toggleScript(tab) {
|
|||
browser.scripting.executeScript({
|
||||
func: uncheckAll,
|
||||
target: {
|
||||
tabId: tab.id
|
||||
tabId: tab.id,
|
||||
allFrames: true
|
||||
}
|
||||
})
|
||||
if(browser.menus)
|
||||
|
|
Loading…
Reference in a new issue