Omoguru - The Easiest Way to Read

Omoguru - The Easiest Way to Read

For anyone with dyslexia, reading, focus and attention difficulties Omoguru makes a text clear and understandable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Omoguru - The Easiest Way to Read",
  "short_name": "Omoguru",
  "description": "For anyone with dyslexia, reading, focus and attention difficulties Omoguru makes a text clear and understandable.",
  "author": "Omoguru",
  "icons": {
    "16": "res/icons/icon16.png",
    "32": "res/icons/icon32.png",
    "48": "res/icons/icon48.png",
    "64": "res/icons/icon64.png",
    "128": "res/icons/icon128.png"
  },
  "browser_action": {
    "default_title": "Omoguru",
    "default_icon": {
      "16": "res/icons/icon16.png",
      "32": "res/icons/icon32.png",
      "48": "res/icons/icon48.png",
      "64": "res/icons/icon64.png",
      "128": "res/icons/icon128.png"
    },
    "default_popup": "background/components/popup/index.html"
  },
  "background": {
    "scripts": [
      "./background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": false,
      "js": [
        "./content.js"
      ],
      "css": [
        "./content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "res/icons/*",
    "res/img/*",
    "res/fonts/*",
    "content/**/*.html",
    "background/**/*.html"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "activeTab",
    "storage",
    "contextMenus",
    "webRequest",
    "webRequestBlocking"
  ],
  "version": "1.0.1"
}