TabFS/extension/manifest.json
Omar Rizwan de9a792a21 start adding extensions/ folder. fix up js tests
some hacks to start working on clearing old scriptParsed entries
2020-12-22 16:36:09 -08:00

25 lines
464 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",
"*://*/*"
],
"background": {
"scripts": ["vendor/browser-polyfill.js", "background.js"],
"persistent": true
},
"browser_specific_settings": {
"gecko": {
"id": "tabfs@rsnous.com"
}
}
}