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

bugfix, add background js, add logo

This commit is contained in:
2022-01-28 15:56:58 +08:00
parent 729e927272
commit cbd2753ec8
5 changed files with 27 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@@ -0,0 +1 @@
console.log("[BitDance extension] 学生助手插件启已启用")

View File

@@ -2,12 +2,32 @@
"name": "BitDance浏览器小插件",
"version": "0.1.0",
"description": "BitDance Chrome Extension",
"manifest_version": 2,
"_locale": "zh_CN",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets/js/background.js"
],
"css": []
}
],
"browser_action": {
"default_icon": "assets/image/ico19_disable.png",
"default_icon": "assets/image/icon_disabled.png",
"default_popup": "popup.html",
"default_title": "这是一个默认title"
},
"default_locale": "zh_CN",
"permissions": [ "background", "contextMenus", "storage", "unlimitedStorage", "webRequest", "webRequestBlocking", "tabs" ]
"permissions": [
"background",
"contextMenus",
"storage",
"unlimitedStorage",
"webRequest",
"webRequestBlocking",
"tabs"
]
}

View File

@@ -15,4 +15,3 @@
<script src="assets/js/popup.js"></script>
</body>
</html>