5 Commits

Author SHA1 Message Date
ddfe7e7a91 JS edit 2024-09-11 21:17:24 +02:00
Vuk Savić
ff839b5333 delete .vscode directory
no need for this anymore
2024-09-10 23:56:28 +02:00
vuk
6355d4f6a6 minor cleanup 2024-09-10 23:52:05 +02:00
vuk
78b6ce361e created .gitignore 2024-09-10 23:49:53 +02:00
vuk
f68d9dad91 extension should now communicate with the official website and hide an element from it 2024-08-22 15:54:57 +02:00
4 changed files with 50 additions and 27 deletions

18
.gitignore vendored Normal file
View File

@@ -0,0 +1,18 @@
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
# Local History for Visual Studio Code
.history/
# Built Visual Studio Code Extensions
*.vsix
### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide

View File

@@ -1,3 +0,0 @@
{
"editor.maxTokenizationLineLength": 100000000000000000000
}

View File

@@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "browser-milje",
"description": "adds a milje table cloth on top of your browser viewport",
"version": "0.0.1",
"version": "0.0.2",
"action": {
"default_popup": "popup.html",
"default_icon": "assets/browser-milje.png"
@@ -15,8 +15,9 @@
},
"content_scripts": [
{
"js": ["scripts/milje.js"],
"matches": ["<all_urls>", "file:///"]
"matches": ["<all_urls>", "file:///"],
"js": ["scripts/milje.js"]
}
]
}

File diff suppressed because one or more lines are too long