Skip to content

Commit 348327c

Browse files
committed
update manifest v3
1 parent 7670efd commit 348327c

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,18 @@ These permissions are necessary for any proxy extension to function properly.
115115
4. Push to the branch (`git push origin feature/amazing-feature`)
116116
5. Open a Pull Request
117117

118+
## Privacy Policy
119+
120+
Container Proxy is committed to protecting your privacy:
121+
122+
- **No Data Collection**: This extension does not collect, store, or transmit any personal data
123+
- **Local Storage Only**: All proxy configurations are stored locally in Firefox's encrypted storage
124+
- **No Analytics**: No tracking, analytics, or telemetry of any kind
125+
- **Open Source**: Full source code available at https://github.com/bigsk1/container-proxy
126+
- **No External Connections**: Extension only communicates with your configured proxy servers
127+
128+
This extension operates entirely offline except for connecting to your specified proxy servers.
129+
118130
## 📄 License
119131

120132
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

manifest.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
{
2-
"manifest_version": 2,
2+
"manifest_version": 3,
33
"name": "Container Proxy",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"description": "Assign different proxies to Firefox containers for secure browsing",
66

77
"permissions": [
88
"storage",
99
"contextualIdentities",
1010
"proxy",
11-
"webRequest",
12-
"webRequestBlocking",
11+
"webRequest"
12+
],
13+
14+
"host_permissions": [
1315
"<all_urls>"
1416
],
1517

1618
"background": {
1719
"scripts": ["background.js"],
18-
"persistent": true
20+
"type": "module"
1921
},
2022

21-
"browser_action": {
23+
"action": {
2224
"default_popup": "popup.html",
2325
"default_title": "Container Proxy Settings",
2426
"default_icon": {
@@ -41,10 +43,10 @@
4143
"128": "icon.svg"
4244
},
4345

44-
"applications": {
46+
"browser_specific_settings": {
4547
"gecko": {
4648
"id": "container-proxy@bigsk1.com",
47-
"strict_min_version": "91.0"
49+
"strict_min_version": "109.0"
4850
}
4951
}
5052
}

0 commit comments

Comments
 (0)