NovelBin/FirefoxExtension/manifest.json

20 lines
471 B
JSON

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