Examine source code of Reading Time Estimator

Inspect and view changes in Reading Time Estimator source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Reading Time Estimator",
  "version": "1.0",
  "description": "Estimate reading time for web articles.",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/estimate-reading-time16.png",
      "48": "images/estimate-reading-time48.png",
      "128": "images/estimate-reading-time.png"
    }
  },
  "icons": {
    "16": "images/estimate-reading-time16.png",
    "48": "images/estimate-reading-time48.png",
    "128": "images/estimate-reading-time.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "read_time_estimate@apktank.com"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}