TabFS/extension/manifest.json
2020-12-25 15:13:04 -08:00

25 lines
467 B
JSON

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