NovelBin/ChromeExtension/manifest.json

21 lines
473 B
JSON

{
"manifest_version": 3,
"name": "NovelBin Auto Recorder",
"version": "1.0",
"description": "Records the current chapter URL from NovelBin via the server, with account registration.",
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"http://192.168.0.226:25570/*"
],
"background": {
"service_worker": "background.js"
}
}