Character Remediation

Character Remediation

This extension corrects the model dependence or other bad characters to correct characters.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en_US",
  "name": "__MSG_browser_extension_name__",
  "description": "__MSG_browser_extension_description__",
  "version": "66.0.3",
  "permissions": ["storage", "tabs", "<all_urls>"],
  "web_accessible_resources": ["*"],
  "content_scripts": [{
    "matches": ["<all_urls>"],
    "js": ["javascript/content.js"]
  }],
  "background": {
    "scripts":  ["javascript/background.js"]
  },
  "icons": {
    "48": "images/icon.png",
    "96": "images/iconx2.png"
  },
//  "homepage_url": "https://example.com/",
  "options_ui": { "page": "views/options.html" }
}