JinbuPal Web Analyzer

JinbuPal Web Analyzer

Uses your JinbuPal data to analyze webpages and score them for what percentage of Chinese characters you know.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "JinbuPal Web Analyzer",
  "description": "Uses your JinbuPal data to analyze webpages and score them for what percentage of Chinese characters you know.",
  "version": "0.0.2",
  "icons": {
    "16": "icon128.png",
    "48": "icon128.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "analyzer.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup-login.html"
  },
  "options_page": "options.html"
}