summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/web_extensions/redirect-to-android-resource/manifest.json
blob: 71d811faa39cd96bea56828152507794ca4a1dd6 (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
{
  "name": "redirect-to-android-resource",
  "description": "Redirects script requests from trackers.html to moz-extension:-resource packaged in the APK (resource://android/...)",
  "manifest_version": 2,
  "version": "1",
  "browser_specific_settings": {
    "gecko": {
      "id": "redirect-to-android-resource@tests.mozilla.org"
    }
  },
  "background": {
    "scripts": ["background.js"]
  },
  "permissions": [
    "geckoViewAddons",
    "nativeMessaging",
    "webRequest",
    "webRequestBlocking",
    "http://localhost/",
    "http://trackertest.org/",
    "https://tracking.example.com/",
    "https://itisatracker.org/tracker.js"
  ],
  "web_accessible_resources": ["web-accessible-script.js"]
}