Skip to content
Snippets Groups Projects
package.json 1.37 KiB
Newer Older
Thomas Rientjes's avatar
Thomas Rientjes committed
{
  "description": "Local emulation of Content Delivery Networks.",
  "author": "Thomas Rientjes",
  "license": "MPL 2.0",
  "title": "Decentraleyes",
Thomas Rientjes's avatar
Thomas Rientjes committed
  "version": "1.2.0",
  "main": "lib/main.js",
  "homepage": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes",
  "name": "decentraleyes",
  "id": "id1-BoFifL9Vbdl2zQ@jetpack",
  "engines": {
    "firefox": ">=21.0",
    "fennec": ">=21.0"
  },
  "preferences": [
    {
      "description": "Automatically prepend a notice to retrieved documents to signal local delivery.",
      "type": "bool",
      "name": "addNotice",
      "value": true,
      "title": "Add comments to locally fetched files"
    },
    {
      "description": "Cancel intercepted request if the required resource is not locally available.",
      "type": "bool",
      "name": "blockMissing",
      "value": false,
      "title": "Block requests for missing resources"
    },
    {
      "description": "Enter domains to whitelist them. Separate multipe entries with semi-colons (;).",
      "type": "string",
      "name": "domainWhitelist",
      "value": "",
      "title": "Exclude domains from inspections"
    },
    {
      "description": "Amount of requests to Content Delivery Networks blocked since installation.",
      "type": "integer",
      "name": "amountBlocked",
      "value": 0,
      "title": "Counter for intercepted requests"
Thomas Rientjes's avatar
Thomas Rientjes committed
}