-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
67 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,58 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "B站视频信息", | ||
"package_name": "BiliVideoInfo", | ||
"version": "0.2.0", | ||
"description": "可以预览B站视频信息, 播放量、点赞、投币、收藏、转发、等。", | ||
"icons": { | ||
"128": "img/logo.png" | ||
"manifest_version": 3, | ||
"name": "B站视频信息", | ||
"package_name": "BiliVideoInfo", | ||
"version": "0.2.0", | ||
"description": "可以预览B站视频信息, 播放量、点赞、投币、收藏、转发、等。", | ||
"icons": { | ||
"128": "img/logo.png" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"js": [ | ||
"scripts/content.js", | ||
"scripts/bilibiliAPI.js", | ||
"scripts/md5.js", | ||
"scripts/constants.js", | ||
"scripts/ui.js" | ||
], | ||
"css": [ | ||
"css/idcard.css" | ||
], | ||
"matches": [ | ||
"https://*.bilibili.com/*" | ||
], | ||
"run_at": "document_start" | ||
} | ||
], | ||
"author": [ | ||
{ | ||
"name": "iceriny", | ||
"url": "https://github.com/iceriny" | ||
} | ||
], | ||
"permissions": [ | ||
"storage" | ||
], | ||
"web_accessible_resources": [ | ||
{ | ||
"resources": [ | ||
"css/idcard.css", | ||
"scripts/markScript.js" | ||
], | ||
"matches": [ | ||
"https://*.bilibili.com/*" | ||
] | ||
} | ||
], | ||
"changelog": [ | ||
{ | ||
"description": "完善与优化UI", | ||
"version": "0.2.0" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"js": [ | ||
"scripts/content.js", | ||
"scripts/bilibiliAPI.js", | ||
"scripts/md5.js", | ||
"scripts/constants.js", | ||
"scripts/ui.js" | ||
], | ||
"css": [ | ||
"css/idcard.css" | ||
], | ||
"matches": [ | ||
"https://*.bilibili.com/*" | ||
], | ||
"run_at": "document_start" | ||
} | ||
], | ||
"author": [ | ||
{ | ||
"name": "iceriny", | ||
"url": "https://github.com/iceriny" | ||
} | ||
], | ||
"permissions": [ | ||
"storage" | ||
], | ||
"web_accessible_resources": [ | ||
{ | ||
"resources": [ | ||
"css/idcard.css", | ||
"scripts/markScript.js" | ||
], | ||
"matches": [ | ||
"https://*.bilibili.com/*" | ||
] | ||
} | ||
] | ||
{ | ||
"description": "基本功能完成", | ||
"version": "0.1.0" | ||
} | ||
] | ||
} |