Track English Progress: how you use languages

Track English Progress: how you use languages

Learn how much time you spend on English language websites, compared to another language.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_application_description__",
  "version": "0.0.1",
  "manifest_version": 3,
  "name": "__MSG_application_title__",
  "options_page": "options.html",
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "./assets/icons/icon.png"
  },
  "icons": {
    "16": "./assets/icons/icon16.png",
    "48": "./assets/icons/icon48.png",
    "128": "./assets/icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon128.png",
        "icon48.png",
        "icon16.png",
        "icon.png"
      ],
      "matches": []
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}