koboprice/manifest.json

30 lines
608 B
JSON
Raw Normal View History

2024-07-14 16:49:40 +03:00
{
"name": "Kobo Price",
2024-07-15 19:00:06 +03:00
"description": "Find lowest book price on kobo.com",
2024-07-15 20:52:41 +03:00
"version": "1.1.4",
2024-07-14 16:49:40 +03:00
"manifest_version": 3,
"permissions": ["activeTab"],
"content_scripts": [
{
2024-07-15 20:52:41 +03:00
"js": ["dist/koboprice.js"],
2024-07-14 16:49:40 +03:00
"run_at": "document_end",
"matches": [
"https://www.kobo.com/*/*/ebook/*",
"https://www.kobo.com/*/*/audiobook/*"
]
}
2024-07-15 19:00:06 +03:00
],
"browser_specific_settings": {
"gecko": {
"id": "koboprice@tertyshny.dev"
}
2024-07-15 20:52:41 +03:00
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
2024-07-15 19:00:06 +03:00
}
2024-07-15 20:52:41 +03:00
2024-07-14 16:49:40 +03:00
}