Skip to content

Commit

Permalink
Migrate to Manifest V3 for Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
Folyd committed Aug 14, 2022
1 parent b05ce1e commit b4f75fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifest.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ local description = 'Rust Search Extension - the ultimate search extension for R

local browser = std.extVar('browser');

local json = if browser == 'chrome' then
local json = if std.member(['chrome', 'edge'], browser) then
local manifest_v3 = import 'core/manifest_v3.libsonnet';
manifest_v3.new(name, keyword, description, version, service_worker='service-worker.js')
.addWebAccessibleResources(
Expand Down

0 comments on commit b4f75fb

Please sign in to comment.