Random Wikipedia Pages

Random Wikipedia Pages

Chrome extension, which fetches random wikipedia article and displays it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.0",
  "short_name": "Random-Wikipedia Pages",
  "name": "Random Wikipedia Pages",
  "description": "Chrome extension, which fetches random wikipedia article and displays it.",
  "browser_action": {
    "default_title": "Random Wikipedia Pages",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}