R42 Module Loader

R42 Module Loader

Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "R42 Module Loader",
  "manifest_version": 2,
  "version": "1.4.3",
  "minimum_chrome_version": "49.0.2623.110",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "communication.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "app/*"
  ],
  "icons": {
    "32": "icon.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}