Skip to content

Commit 414bc6e

Browse files
committed
feat: first commit
0 parents  commit 414bc6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+12368
-0
lines changed

.eslintrc.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2020": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/eslint-recommended",
9+
"plugin:@typescript-eslint/recommended"
10+
],
11+
"parser": "@typescript-eslint/parser",
12+
"parserOptions": {
13+
"ecmaVersion": 11
14+
},
15+
"plugins": ["@typescript-eslint"],
16+
"ignorePatterns": ["dist/*"]
17+
}

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18+
.grunt
19+
20+
# node-waf configuration
21+
.lock-wscript
22+
23+
# Compiled binary addons (http://nodejs.org/api/addons.html)
24+
build/Release
25+
26+
# Dependency directories
27+
node_modules
28+
jspm_packages
29+
30+
# Optional npm cache directory
31+
.npm
32+
33+
# Optional REPL history
34+
.node_repl_history
35+
36+
#Ignores for Typescript and wwwroot project
37+
node_modules
38+
typings
39+
40+
# js stuff (we use typescript)
41+
*.js
42+
*.map
43+
*.d.ts
44+
45+
# dist folder
46+
dist/
47+
48+
*.zip
49+
*.tgz
50+

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 100,
3+
"singleQuote": false
4+
}

.vscode/launch.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
// Use IntelliSense to learn about possible Node.js debug attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Mocha Tests",
11+
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
12+
"protocol": "inspector",
13+
"args": [
14+
"-u",
15+
"tdd",
16+
"--timeout",
17+
"999999",
18+
"--colors",
19+
"${workspaceRoot}/test"
20+
],
21+
"internalConsoleOptions": "openOnSessionStart",
22+
"env": {
23+
"DEBUG": "*,-not_this"
24+
}
25+
}
26+
]
27+
}

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"files.exclude": {
3+
"**/.git": true,
4+
"**/.DS_Store": true,
5+
"**/*.js": {
6+
"when": "$(basename).ts"
7+
},
8+
"**/*.js.map": {
9+
"when": "$(basename)"
10+
},
11+
"**/*.d.ts": {
12+
"when": "$(basename).ts"
13+
}
14+
},
15+
"typescript.tsdk": "./node_modules/typescript/lib"
16+
}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# MindSphere Authorization Helper Chrome Extension
2+
3+
## Simplify MindSphere Authentication During Development

assets/css/styles.css

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/** @format */
2+
3+
#_mdspcontent {
4+
margin-top: 25px;
5+
font-size: 21px;
6+
text-align: center;
7+
animation: fadein 2s;
8+
-moz-animation: fadein 2s; /* Firefox */
9+
-webkit-animation: fadein 2s; /* Safari and Chrome */
10+
-o-animation: fadein 2s; /* Opera */
11+
}
12+
@keyframes fadein {
13+
from {
14+
opacity: 0;
15+
}
16+
to {
17+
opacity: 1;
18+
}
19+
}
20+
@-moz-keyframes fadein {
21+
/* Firefox */
22+
from {
23+
opacity: 0;
24+
}
25+
to {
26+
opacity: 1;
27+
}
28+
}
29+
@-webkit-keyframes fadein {
30+
/* Safari and Chrome */
31+
from {
32+
opacity: 0;
33+
}
34+
to {
35+
opacity: 1;
36+
}
37+
}
38+
@-o-keyframes fadein {
39+
/* Opera */
40+
from {
41+
opacity: 0;
42+
}
43+
to {
44+
opacity: 1;
45+
}
46+
}
1.17 KB
Loading

assets/images/logo-128.png

3.89 KB
Loading

assets/images/logo-16.png

605 Bytes
Loading

0 commit comments

Comments
 (0)