AMP Accelerated Mobile Pages Desktop Viewer

AMP Accelerated Mobile Pages Desktop Viewer

A Chrome extension to view AMP (accelerated mobile pages) in the desktop browser. Allows you to enable AMP for individual websites…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AMP Accelerated Mobile Pages Desktop Viewer",
  "version": "1.2.0",
  "short_name": "AMP Desktop",
  "author": "Bigpress",
  "background": {
    "scripts": [
      "core/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "core/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "page_action": {
    "default_icon": {
      "38": "icons/icon38.png"
    },
    "default_title": "AMP View"
  },
  "icons": {
    "16": "icons/default16.png",
    "48": "icons/default48.png",
    "128": "icons/default.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}