Files
containerSite/manifest.json
sal d6dabb2646 Add GamepadAPI, WebGL readPixels noise, auto-prune, import/export, badge
New fingerprint vectors:
- Gamepad API: getGamepads() returns empty (prevents controller fingerprinting)
- WebGL readPixels: seeded pixel noise on framebuffer reads

New features:
- Auto-prune: configurable automatic removal of inactive containers
- Import/export: backup and restore all settings from options page
- Toolbar badge: shows active container count
- CHANGELOG.md: version history

Bumped to v0.5.0 with 20 spoofed fingerprint vectors.
2026-03-04 21:08:45 -06:00

45 lines
1.0 KiB
JSON

{
"manifest_version": 2,
"name": "ContainSite",
"version": "0.5.0",
"description": "Per-container fingerprint isolation — each container gets its own device identity",
"permissions": [
"contextualIdentities",
"cookies",
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"background": {
"scripts": ["lib/prng.js", "lib/fingerprint-gen.js", "background.js"]
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"browser_action": {
"default_popup": "popup/popup.html",
"default_icon": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"default_title": "ContainSite"
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "containsite@salmutt.dev",
"strict_min_version": "100.0",
"data_collection_permissions": {
"required": ["none"],
"optional": []
}
}
}
}