koboprice/manifest.json

18 lines
370 B
JSON
Raw Normal View History

2024-07-14 16:49:40 +03:00
{
"name": "Kobo Price",
"description": "Lowest book price finder",
"version": "1.0",
"manifest_version": 3,
"permissions": ["activeTab"],
"content_scripts": [
{
"js": ["dist/index.js"],
"run_at": "document_end",
"matches": [
"https://www.kobo.com/*/*/ebook/*",
"https://www.kobo.com/*/*/audiobook/*"
]
}
]
}