Critiques pour File System Access
File System Access par sycxyc
1 note
- Noté 4 sur 5par Coder178, il y a un anWorks as expected. It allows me to use sites that require the FileSystem API. It also implements permissions, so I can allow/deny a site that immediately asks for it. Would be nice if I could disable the extension on a specific site to prevent fingerprinting, where the extension pretends not to exist at all.
Réponse du développeur
mis en ligne : il y a un anYou could exclude specific sites by adding the following section through Options Page > Content Script > Match patterns:
```
"excludeMatches": [
"*://www.example.com/*",
"*://www.example.org/*"
],
```