Files
diff-viewer-extension/manifest.json
Pierre Jacquier 2412009825 Cut release v0.9.0 (#643)
* Bump to @crxjs/vite-plugin@2.0.0-beta.26

* Clean up old workaround

* Pin runner to 20.04

* Add fixme on a blob preview test

* Cut release v0.9.0
2025-01-03 15:24:55 -05:00

41 lines
966 B
JSON

{
"name": "Zoo Diff Viewer",
"description": "Zoo Diff Viewer Chrome Extension",
"version": "0.9.0",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Open the settings"
},
"icons": {
"16": "logo192.png",
"48": "logo192.png",
"128": "logo192.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://github.com/",
"https://api.github.com/",
"https://media.githubusercontent.com/",
"https://api.kittycad.io/"
],
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"src/chrome/content.ts"
],
"all_frames": false,
"run_at": "document_end"
}
],
"background": {
"service_worker": "src/chrome/background.ts",
"type": "module"
}
}