blob: 022cf27a875302eea75dc3ffa99a5bfa3101e2ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"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"
}
}
}
|