Files
omnivore/pkg/extension-v3/extension/manifest.json
Jackson Harper 2ec1d6f58c Initial prototype of the V3 manifest extension (#4357)
* Initial prototype of the V3 manifest extension

* Make sure the content script is only injected once

* Implement addNote button

* More separation work for tasks, implement archive and update note

* Add back missing functionality, add guide to install Extensions

* Revert v2 changes

---------

Co-authored-by: Thomas Rogers <Podginator@gmail.com>
2025-02-23 16:35:41 +01:00

43 lines
833 B
JSON

{
"manifest_version": 3,
"name": "Omnivore - Self Hosted",
"version": "3.0",
"description": "Save content to your Omnivore library.",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"scripts": ["background.js"]
},
"web_accessible_resources": [
{
"resources": [
"images/*.svg",
"views/toast.html"
],
"matches": [
"<all_urls>"
]
}
],
"options_page": "views/options.html",
"action": {
"default_icon": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
}