EthicsNet

EthicsNet

Machine Intelligence requires large, well-documented datasets (examples) to be trained upon. Datasets often matter more than…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EthicsNet",
  "version": "0.1.22",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/html2canvas.js",
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/favicon-16x16.png"
  },
  "chrome_url_overrides": {},
  "web_accessible_resources": [
    "sidebar/sidebar.html"
  ],
  "browser_action": {
    "default_icon": "images/EthicsNetLogoFavicon.png",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "tabs",
    "management",
    "activeTab",
    "storage",
    "contextMenus",
    "<all_urls>"
  ],
  "default_locale": "en"
}