1 Commits

Author SHA1 Message Date
37aa1bd689 Firefox port 2021-11-25 21:01:49 +03:00
10 changed files with 7139 additions and 1563 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,4 @@
/node_modules
.DS_Store
/.cache
/.idea
/assets

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -19,6 +19,11 @@
"page_action": {
"default_popup": "dist/popup.html"
},
"browser_action": {
"default_icon": "assets/icons/icon128.png",
"default_title": "VK Mute",
"default_popup": "dist/popup.html"
},
"manifest_version": 2,
"content_scripts": [
{
@@ -28,5 +33,11 @@
],
"web_accessible_resources": [
"assets/mute.png"
]
],
"browser_specific_settings": {
"gecko": {
"id": "{121ce430-bad8-4f6b-85ba-55635e87e57d}",
"strict_min_version": "48.0"
}
}
}

8670
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -20,11 +20,11 @@
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.2",
"html-webpack-plugin": "^4.2.0",
"style-loader": "^1.1.4",
"webpack": "^5.76.0",
"webpack": "^4.42.1",
"webpack-cli": "^4.7.2"
}
}