diff options
| author | praschke <stel@comfy.monster> | 2023-08-16 11:52:29 +0100 | 
|---|---|---|
| committer | praschke <stel@comfy.monster> | 2023-08-17 14:17:30 +0100 | 
| commit | 2ac3115c526a766b19bded840417dc1303016e66 (patch) | |
| tree | d3185b6ce4d87c1f2762d79ab03c9bdffa7b8c1a | |
| parent | 660aa2a7cf3b5771d02114a454555cd9785e759e (diff) | |
fix #173
`declarativeNetRequest.updateDynamicRules()` returns with an
unexpected error in Firefox, but only after the browser has been
restarted. On a fresh install of Yomitan it works, causing bug
flakiness. `declarativeNetRequest` can be disabled in the manifest as
a workaround.
| -rw-r--r-- | dev/data/manifest-variants.json | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/dev/data/manifest-variants.json b/dev/data/manifest-variants.json index e167c755..304a3a0e 100644 --- a/dev/data/manifest-variants.json +++ b/dev/data/manifest-variants.json @@ -247,6 +247,13 @@                      "items": [                          "nativeMessaging"                      ] +                }, +                { +                    "action": "remove", +                    "path": [ +                        "permissions" +                    ], +                    "item": "declarativeNetRequest"                  }              ],              "excludeFiles": [ |