ACX Tweaks

ACX Tweaks

Quality of life improvements for the Astral Codex Ten blog on Substack.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ACX Tweaks",
  "description": "Quality of life improvements for the Astral Codex Ten blog on Substack.",
  "version": "1.1",
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "icons/acx-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://astralcodexten.substack.com/*",
        "https://www.astralcodexten.com/*",
        "https://astralcodexten.com/*"
      ],
      "js": [
        "lib/jquery-3.5.1.min.js",
        "js/options.js",
        "js/util.js",
        "js/styles.js",
        "js/content.js",
        "js/tests.js"
      ],
      "css": [
        "skin/css/style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "icons/*.svg"
  ],
  "browser_action": {
    "default_popup": "skin/popup.html",
    "default_title": "ACX Tweaks"
  }
}