Skip to content

Commit

Permalink
add extension id for firefox manifest generation
Browse files Browse the repository at this point in the history
  • Loading branch information
arobsn committed Dec 6, 2024
1 parent 18b0561 commit c6142fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/extension/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ export function buildManifest(network: Network, browser: Browser, mode: string)
manifest.background = { service_worker: r("background/background.ts") };
} else if (browser === "firefox") {
manifest.background = { scripts: [r("background/background.ts")] };
manifest.browser_specific_settings = {
gecko: { id: "dbeafd3777d14d1160429696d70bbeb91e0998fb@nautilus" }
};
}

return manifest;
Expand Down

0 comments on commit c6142fe

Please sign in to comment.