Alex

Alex

Catch insensitive, inconsiderate writing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Alex",
  "description": "Catch insensitive, inconsiderate writing",
  "version": "1.0",
  "author": "Simon Knott",
  "developer": {
    "name": "Simon Knott",
    "url": "https://simonknott.de"
  },
  "homepage_url": "https://github.com/skn0tt/alex-browser-extension",
  "icons": {
    "48": "alex_logo_48.png",
    "96": "alex_logo_96.png",
    "128": "alex_logo_128.png"
  },
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "alex_options/dist/index.html",
    "default_icon": "alex_logo_48.png"
  },
  "incognito": "spanning",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "alex_content_script/dist/index.js"
      ],
      "css": [
        "alex_content_script/index.css"
      ]
    }
  ]
}