1 Commits

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

1
.gitignore vendored
View File

@@ -1,5 +1,4 @@
/node_modules /node_modules
.DS_Store
/.cache /.cache
/.idea /.idea
/assets /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": { "page_action": {
"default_popup": "dist/popup.html" "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, "manifest_version": 2,
"content_scripts": [ "content_scripts": [
{ {
@@ -28,5 +33,11 @@
], ],
"web_accessible_resources": [ "web_accessible_resources": [
"assets/mute.png" "assets/mute.png"
] ],
"browser_specific_settings": {
"gecko": {
"id": "{121ce430-bad8-4f6b-85ba-55635e87e57d}",
"strict_min_version": "48.0"
}
}
} }

8354
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

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