AMP Accelerated Mobile Page Reader

AMP Accelerated Mobile Page Reader

The AMP Project is all about improving the reading experience on mobile devices but it's not a technology limited to mobile. This…

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 Page Reader",
  "version": "1.0.1",
  "short_name": "AMP Reader",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "core/config.js",
        "core/helpers.js",
        "core/stateManager.js",
        "core/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/default.png",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "icons/default16.png",
    "48": "icons/default48.png",
    "128": "icons/default.png"
  },
  "background": {
    "scripts": [
      "core/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}