Files
diff-viewer-extension/manifest.json
2023-09-01 05:03:59 -04:00

41 lines
976 B
JSON

{
"name": "KittyCAD Diff Viewer",
"description": "KittyCAD Diff Viewer Chrome Extension",
"version": "0.7.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"
}
}