AO3 Kudos-Per-Hit Ratios

AO3 Kudos-Per-Hit Ratios

Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AO3 Kudos-Per-Hit Ratios",
  "version": "1.3.2",
  "description": "Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.archiveofourown.org/*"
      ],
      "css": [
        "main.css"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}