Skip to content

Commit 4f43c87

Browse files
committed
Add project 🚚
1 parent 9532e12 commit 4f43c87

File tree

130 files changed

+29709
-0
lines changed

Some content is hidden

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

130 files changed

+29709
-0
lines changed

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.idea
2+
dist
3+
4+
# dependencies
5+
/node_modules
6+
/.pnp
7+
.pnp.js
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

manifest.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"manifest_version": 2,
3+
"name": "My Snapp",
4+
"short_name": "My Snapp",
5+
"version": "2.2.0",
6+
"description": "Analyze your Snapp rides",
7+
"permissions": ["tabs", "storage"],
8+
"browser_action": {
9+
"default_popup": "popup/index.html",
10+
"default_title": "My Snapp"
11+
},
12+
"icons": {
13+
"128": "assets/icon.png"
14+
},
15+
"content_scripts": [
16+
{
17+
"js": ["contentscript.js"],
18+
"matches": ["https://app.snapp.taxi/*"]
19+
}
20+
],
21+
"background": {
22+
"persistent": false,
23+
"scripts": ["background.js"]
24+
},
25+
"web_accessible_resources": ["assets/*"],
26+
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
27+
}

0 commit comments

Comments
 (0)