summaryrefslogtreecommitdiff
path: root/data/extensions/google_drive@0xbeef.coffee/manifest.json
blob: 0f5141f4665c03e2b55b597347ad2e628d0bc9ce (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
25
26
27
28
29
{
  "manifest_version": 2,
  "name": "LibreJS Google Drive",
  "version": "1.0",
  "author": "Nathan Nichols",
  "id": "LibrejsDrive@0xbeef.coffee",
  "description": "Makes Google Drive usable with LibreJS.",
  "icons": {
    "16": "icons/L4Libre.png",
    "48": "icons/L4Libre48.png",
    "128": "icons/L4Libre128.png"
  },
  "applications": {
    "gecko": {
	  "id": "google_drive@0xbeef.coffee",
	  "strict_min_version": "42.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "js": [
        "google_drive.js"
      ]
    }
  ]
}