Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lostbeard/spawndev.blazorjs.browserextension
Create Blazor WASM Manifest V3 web browser extensions
https://github.com/lostbeard/spawndev.blazorjs.browserextension
blazor blazor-webassembly browser browser-extension browser-extensions csharp dotnet webbrowser
Last synced: 2 months ago
JSON representation
Create Blazor WASM Manifest V3 web browser extensions
- Host: GitHub
- URL: https://github.com/lostbeard/spawndev.blazorjs.browserextension
- Owner: LostBeard
- License: mit
- Created: 2024-03-20T15:49:20.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-11-07T19:06:11.000Z (3 months ago)
- Last Synced: 2024-11-07T20:19:18.619Z (3 months ago)
- Topics: blazor, blazor-webassembly, browser, browser-extension, browser-extensions, csharp, dotnet, webbrowser
- Language: C#
- Homepage:
- Size: 1.53 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# SpawnDev.BlazorJS.BrowserExtension
This project is new and under active development. A Nuget package will be released soon.
SpawnDev.BlazorJS.BrowserExtension adds the ability for Blazor WASM to run as a web browser Manifest V3 extension. Blazor can run in all extension contexts. Runs in content context (in page with any site), popup window, options window, and the background.
## Features
- Manifest V3
- Create a fully functional Manifest V3 web browser extension without writing a single line of Javascript
- Multi-platform extension builds (Firefox, Chrome, etc)
- Supports non-SIMD compatible browsers/devices. Uses SIMD when available
- Shared and platform specific manifest entries
- Blazor WASM runs in ALL extension contexts:
- Background page (Firefox)
- Background ServiceWorker (Chrome)
- Content script
- Options, Popup, etc
- Direct access to extension [APIs](https://developer.chrome.com/docs/extensions/reference/api) via C#
- Extension, Runtime, Tabs, Windows, Storage, etc### Dependencies
- [SpawnDev.BlazorJS](https://github.com/LostBeard/SpawnDev.BlazorJS) - Enables full access to the Javascript environment, and Javascript class wrapping.
- [SpawnDev.BlazorJS.WebWorkers](https://github.com/LostBeard/SpawnDev.BlazorJS.WebWorkers) - Enables running Blazor WebAssembly in any web browser context, and inter-context communication.