AO3 Chinese Helper

AO3 Chinese Helper

Improve Chinese user experience of AO3.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AO3 Chinese Helper",
  "description": "Improve Chinese user experience of AO3.",
  "version": "1.0",
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://archiveofourown.org/*",
        "http://archiveofourown.org/*"
      ],
      "js": [
        "jquery-3.2.1.slim.min.js",
        "content.js"
      ]
    }
  ]
}