Anity

Anity

Annotate all manga images in the tab with kanji readings, web and user translations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Anity",
  "name": "Anity",
  "description": "Annotate all manga images in the tab with kanji readings, web and user translations",
  "version": "2.1.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "browser_action": {
    "default_title": "Anity",
    "default_popup": "index.html",
    "default_icon": {
      "16": "icon16.png"
    }
  },
  "background": {
    "scripts": [
      "/static/js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "identity",
    "notifications",
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    "/static/css/content.css",
    "/static/css/content.css.map",
    "/icons/*.svg"
  ]
}