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.",
|
"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",
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue