TaxFreeway

TaxFreeway

Software tool for Canadian taxpayer to use CRA Netfile and AFR online services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TaxFreeway",
  "short_name": "TaxFreeway",
  "version": "1.2",
  "minimum_chrome_version": "23",
  "icons": {
    "16": "icon_16.png",
    "128": "icon_128.png"
  },
  "default_locale": "en",
  "app": {
    "background": {
      "scripts": [
        "main.js"
      ]
    }
  },
  "permissions": [
    "https://*.cra-arc.gc.ca/",
    "system.network",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "storage"
  ],
  "sockets": {
    "tcpServer": {
      "listen": [
        "*"
      ]
    },
    "tcp": {
      "connect": "*:37"
    }
  },
  "file_handlers": {
    "text": {
      "types": [
        "text/*"
      ]
    }
  }
}