1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-07 16:35:15 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

添加右键菜单

This commit is contained in:
2022-01-28 17:41:12 +08:00
parent 43c595380f
commit 6b0e0efcb3
3 changed files with 18 additions and 2 deletions

View File

@@ -4,13 +4,18 @@
"description": "BitDance Chrome Extension",
"manifest_version": 2,
"_locale": "zh_CN",
"background": {
"scripts": [
"assets/js/background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets/js/background.js"
"assets/js/content.js"
],
"css": []
}