mirror of
https://github.com/lifegpc/bookdownload.git
synced 2026-06-07 14:18:52 +08:00
79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"name": "电子书下载器",
|
|
"description": "一个用于下载电子书的浏览器扩展",
|
|
"version": "1.0.0",
|
|
"manifest_version": 3,
|
|
"icons": {
|
|
"16": "ico/16.png",
|
|
"48": "ico/48.png",
|
|
"128": "ico/128.png"
|
|
},
|
|
"host_permissions": [
|
|
"https://*.qidian.com/",
|
|
"http://*.qidian.com/"
|
|
],
|
|
"action": {
|
|
"default_icon": {
|
|
"19": "ico/19.png",
|
|
"38": "ico/38.png"
|
|
},
|
|
"default_title": "电子书下载器",
|
|
"default_popup": "dist/popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://*.qidian.com/chapter/*",
|
|
"http://*.qidian.com/chapter/*"
|
|
],
|
|
"js": [
|
|
"dist/qdchapter.js"
|
|
],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://*.qidian.com/*",
|
|
"http://*.qidian.com/*"
|
|
],
|
|
"js": [
|
|
"inject/qd.js"
|
|
],
|
|
"run_at": "document_start",
|
|
"world": "MAIN"
|
|
},
|
|
{
|
|
"matches": [
|
|
"http://*.qidian.com/book/*",
|
|
"https://*.qidian.com/book/*"
|
|
],
|
|
"js": [
|
|
"dist/qdbook.js"
|
|
],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"matches": [
|
|
"http://*.qidian.com/book/*",
|
|
"https://*.qidian.com/book/*"
|
|
],
|
|
"js": [
|
|
"inject/qdbook.js"
|
|
],
|
|
"run_at": "document_start",
|
|
"world": "MAIN"
|
|
}
|
|
],
|
|
"options_ui": {
|
|
"open_in_tab": true,
|
|
"page": "dist/settings.html"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"contextMenus"
|
|
],
|
|
"background": {
|
|
"service_worker": "dist/background.js",
|
|
"type": "module"
|
|
}
|
|
} |