ner-tagger

ner-tagger

This addon acts as a text annotation tool, whose main purpose is give a faster way to build up a dataset for machine learning.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ner-tagger",
  "description": "This addon acts as a text annotation tool, whose main purpose is give a faster way to build up a dataset for machine learning.",
  "version": "0.0.9",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/annotator.js",
        "js/ner-tagger.js"
      ],
      "css": [
        "css/ner-tagger.css"
      ]
    }
  ],
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "http://*/",
    "https://*/",
    "storage",
    "tabs"
  ]
}