Learn Amp

Learn Amp

The Learn Amp Chrome Extension allows Learn Amp users to add web pages to their Company Library.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Learn Amp",
  "description": "The Learn Amp Chrome Extension allows Learn Amp users to add web pages to their Company Library.",
  "version": "1.0.5",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "./img/bulb_icon.png"
  },
  "icons": {
    "48": "./img/bulb_icon.png",
    "128": "./img/logo.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "safe/*"
  ]
}