TabFS/extension/manifest.json
2020-12-02 20:24:20 -08:00

25 lines
450 B
JSON

{
"manifest_version": 2,
"name": "TabFS",
"description": "Mount your browser tabs as a filesystem",
"version": "1.0",
"permissions": [
"tabs", "tabCapture", "debugger", "nativeMessaging",
"unlimitedStorage",
"*://*/*"
],
"background": {
"scripts": ["vendor/browser-polyfill.js", "background.js"],
"persistent": true
},
"browser_specific_settings": {
"gecko": {
"id": "tabfs@rsnous.com"
}
}
}