Skip to content

Commit

Permalink
基础框架搭建
Browse files Browse the repository at this point in the history
  • Loading branch information
noberumotto committed May 19, 2024
1 parent f699d96 commit b9d654b
Show file tree
Hide file tree
Showing 124 changed files with 5,857 additions and 426 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "针对 localhost 启动 Chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
9 changes: 9 additions & 0 deletions Tai.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{F826BA92-53C
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tai", "src\Tai\Tai.csproj", "{F3B955AC-0390-499E-AF88-68E6FA74A99B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{7C0B30A5-27F7-4D61-B48C-C00B0F9DE88D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tai.Tests", "tests\Tai.Tests\Tai.Tests.csproj", "{B9174565-C2FF-420A-AAD3-CBE4141D4A7F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -17,12 +21,17 @@ Global
{F3B955AC-0390-499E-AF88-68E6FA74A99B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F3B955AC-0390-499E-AF88-68E6FA74A99B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F3B955AC-0390-499E-AF88-68E6FA74A99B}.Release|Any CPU.Build.0 = Release|Any CPU
{B9174565-C2FF-420A-AAD3-CBE4141D4A7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B9174565-C2FF-420A-AAD3-CBE4141D4A7F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B9174565-C2FF-420A-AAD3-CBE4141D4A7F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B9174565-C2FF-420A-AAD3-CBE4141D4A7F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{F3B955AC-0390-499E-AF88-68E6FA74A99B} = {F826BA92-53C4-47F6-8010-2D5595B20044}
{B9174565-C2FF-420A-AAD3-CBE4141D4A7F} = {7C0B30A5-27F7-4D61-B48C-C00B0F9DE88D}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4DA466B1-BDF8-43E3-A25E-FBCB2380F588}
Expand Down
Binary file added browser/Extensions/Chrome/icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added browser/Extensions/Chrome/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added browser/Extensions/Chrome/icons/socket-active.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions browser/Extensions/Chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "Tai Sentry",
"description": "Tai网页浏览数据统计拓展",
"version": "0.2",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"manifest_version": 3,
"minimum_chrome_version": "116",
"action": {
"default_icon": "icons/socket-inactive.png"
},
"background": {
"service_worker": "service-worker.js",
"type": "module"
},
"permissions": [
"tabs"
]
}
Loading

0 comments on commit b9d654b

Please sign in to comment.