28 lines
572 B
JSON
28 lines
572 B
JSON
{
|
|
"name": "Kobo Price",
|
|
"description": "Find lowest book price on kobo.com",
|
|
"version": "1.2.3",
|
|
"manifest_version": 3,
|
|
"content_scripts": [
|
|
{
|
|
"js": ["dist/index.js"],
|
|
"run_at": "document_end",
|
|
"matches": [
|
|
"https://www.kobo.com/*/*/ebook/*",
|
|
"https://www.kobo.com/*/*/audiobook/*"
|
|
]
|
|
}
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "koboprice@tertyshny.dev"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/16.png",
|
|
"32": "icons/32.png",
|
|
"48": "icons/48.png",
|
|
"128": "icons/128.png"
|
|
}
|
|
|
|
}
|