mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-07-04 12:36:37 +02:00
Added option "Don't show again on update." for options page.
Fixes #227.
This commit is contained in:
parent
34019f2515
commit
cedd2137e2
7 changed files with 48 additions and 2 deletions
|
@ -181,8 +181,12 @@
|
|||
openOptions(details.reason);
|
||||
break;
|
||||
case "update":
|
||||
message("CanvasBlocker updated");
|
||||
openOptions(details.reason);
|
||||
settings.onloaded(function(){
|
||||
if (!settings.dontShowOptionsOnUpdate){
|
||||
message("CanvasBlocker updated");
|
||||
openOptions(details.reason);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -222,6 +222,10 @@
|
|||
name: "displayDescriptions",
|
||||
defaultValue: false
|
||||
},
|
||||
{
|
||||
name: "dontShowOptionsOnUpdate",
|
||||
defaultValue: false
|
||||
},
|
||||
{
|
||||
name: "isStillDefault",
|
||||
defaultValue: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue