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

feat: add monorepo

This commit is contained in:
kaz
2022-01-26 18:46:54 +08:00
parent 1659cde35a
commit 628d37cbc8
65 changed files with 11803 additions and 11 deletions

Submodule packages/shell-chrome/_locales added at 1659cde35a

File diff suppressed because one or more lines are too long

View File

View File

@@ -0,0 +1 @@
console.log('Hello World');

View File

@@ -0,0 +1,13 @@
{
"name": "BitDance浏览器小插件",
"version": "0.1.0",
"description": "BitDance Chrome Extension",
"manifest_version": 3,
"browser_action": {
"default_icon": "assets/image/ico19_disable.png",
"default_popup": "popup.html",
"default_title": "这是一个默认title"
},
"default_locale": "zh_CN",
"permissions": [ "background", "contextMenus", "storage", "unlimitedStorage", "webRequest", "webRequestBlocking", "tabs" ]
}

View File

@@ -0,0 +1,7 @@
{
"name": "@bitdance/shell-chrome",
"version": "0.0.0",
"scripts": {
"test": "node index.js"
}
}

View File

@@ -0,0 +1,18 @@
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BitDance</title>
<link href="assets/css/main.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="popup">
<div class="panel">
<p>Hello world!</p>
</div>
</div>
<script src="assets/js/common/jquery.min.js"></script>
<script src="assets/js/popup.js"></script>
</body>
</html>

View File

@@ -0,0 +1,3 @@
{
"root": "packages\\shell-chrome"
}