⚡️ Desktop AMP

⚡️ Desktop AMP

Load the AMP version of a page if available

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "⚡️ Desktop AMP",
  "short_name": "Desktop ⚡️",
  "description": "Load the AMP version of a page if available",
  "author": "Ed Lea",
  "version": "2.3.1",
  "content_scripts": [
    {
      "js": [
        "amp.js"
      ],
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "history"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "icons/Icon-16.png",
    "48": "icons/Icon-48.png",
    "128": "icons/Icon-128.png"
  }
}