aboutsummaryrefslogtreecommitdiffstats
path: root/extension/manifest.json
blob: f99567b227b9dd9f95169c85ea5a2ae9c080e3a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "manifest_version": 2,

  "name": "TabFS Extension",
  "description": "Connects to TabFS filesystem",
  "version": "1.0",

  "permissions": ["tabs", "debugger", "nativeMessaging", "unlimitedStorage"],

  "browser_action": {},
  
  "background": {
    "scripts": ["background.js"],
    "persistent": true
  },

  "browser_specific_settings": {
    "gecko": {
      "id": "tabfs@rsnous.com"
    }
  }
}