RoyalRoadLegends Proofreading Assistant

RoyalRoadLegends Proofreading Assistant

This extension greatly simplifies the process of pointing out mistakes in the chapter contents.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RoyalRoadLegends Proofreading Assistant",
  "description": "This extension greatly simplifies the process of pointing out mistakes in the chapter contents.",
  "version": "0.0.0.3",
  "browser_action": {
    "default_icon": "icon48.png"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "*://royalroadl.com/*",
    "*://www.royalroadl.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://royalroadl.com/fiction/*/*/chapter/*",
        "https://royalroadl.com/fiction/*/*/chapter/*",
        "http://www.royalroadl.com/fiction/*/*/chapter/*",
        "https://www.royalroadl.com/fiction/*/*/chapter/*"
      ],
      "js": [
        "lib/jquery.min.js",
        "lib/assistant.js",
        "lib/diff.js",
        "lib/bootstrap.min.js",
        "lib/bootstrap-toggle.min.js"
      ],
      "css": [
        "css/assistant.css",
        "css/bootstrap.min.css",
        "css/bootstrap-toggle.min.css",
        "css/bootstrap-theme.min.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "lib/jquery.min.js",
    "lib/diff.js",
    "lib/bootstrap.min.js",
    "lib/bootstrap-toggle.min.js",
    "icon48.png",
    "suggestion_popup.html"
  ]
}