Examine source code of AnnoReader - Text Annotation Tool

Inspect and view changes in AnnoReader - Text Annotation Tool source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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 (hiro@hironobu.org)",
  "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": "fx-addon@annoreader.com"
    }
  },
  "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"
    }
  ]
}