Wikipedia Article Recommender

Wikipedia Article Recommender suggests a related article for most of the English-language Wikipedia articles you visit.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "wikiarticlerecommenderdev@gmail.com"
    }
  },
  "name": "Wikipedia Article Recommender",
  "version": "0.0.3resigned1",
  "description": "Suggests a related article for most of the English-language Wikipedia articles you visit.",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "storage",
    "https://localhost/*",
    "https://ryanbisson.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.wikipedia.org/*"
      ],
      "js": [
        "wikipedia-article-recommender.bundle.js"
      ]
    }
  ]
}