Topo

Topo

Topo generates topographic maps of Wikipedia articles to visualize information depth.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Topo",
  "version": "0.203",
  "description": "Topo generates topographic maps of Wikipedia articles to visualize information depth.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon-19.png",
    "default_title": "Topo"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://en.wikipedia.org/wiki/*",
        "https://en.wikipedia.org/wiki/*",
        "http://en.wikipedia.org/w/*"
      ],
      "exclude_matches": [
        "http://en.wikipedia.org/wiki/Main_Page",
        "http://en.wikipedia.org/wiki/File:*"
      ],
      "js": [
        "jquery-1.10.2.min.js",
        "contentscript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "19": "icon-19.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2
}