o-ey

o-ey

A user translation viewer for BOJ

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "0.7.2",
  "short_name": "__MSG_appShortName__",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "64": "images/64.png",
    "128": "images/128.png",
    "144": "images/144.png",
    "192": "images/192.png",
    "256": "images/256.png"
  },
  "action": {
    "browser_style": true,
    "default_area": "navbar",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.acmicpc.net/problem/*"
      ],
      "js": [
        "scripts/problem.js"
      ],
      "css": [
        "styles/label.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "https://www.acmicpc.net/problem/*",
        "https://www.acmicpc.net/category/*",
        "https://www.acmicpc.net/step/*",
        "https://www.acmicpc.net/problemset*"
      ],
      "js": [
        "scripts/problemList.js"
      ],
      "css": [
        "styles/label.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "https://solved.ac/*"
      ],
      "js": [
        "scripts/solvedList.js"
      ],
      "css": [
        "styles/solved.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*.svg"
      ],
      "matches": [
        "https://solved.ac/*",
        "https://www.acmicpc.net/*"
      ]
    }
  ]
}