AnnoReader - Text Annotation Tool

AnnoReader - Text Annotation Tool

AnnoReader is a tool designed for reading English texts simple.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "AnnoReader - Text Annotation Tool",
  "short_name": "AnnoReader",
  "description": "AnnoReader is a tool designed for easy English reading.",
  "author": "SAITO Hironobu ([email protected])",
  "homepage_url": "https://annoreader.com/",
  "version": "1.3.1",
  "default_locale": "en",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "images/logo.png",
    "annoreader.css"
  ],
  "browser_action": {
    "default_title": "AnnoReader",
    "default_popup": "browser-action.html",
    "default_icon": "images/popup.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_idle"
    }
  ]
}